Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~8K People Reached
Favorite Tags
Member Avatar for baudday

Hey everyone! I'm brand new to Android and have been working on a very basic app that just takes a picture with an image overlay and saves it. So far I have figured out how to get the camera preview, take a picture, and do an image overlay on the …

Member Avatar for Schol-R-LEA
0
2K
Member Avatar for baudday

So I have taken two courses in college over Java and feel fairly comfortable with it. Aside from that, I have an excellent book that helps me figure things out when I'm not sure about something. Now I'm trying to learn all about Android apps and how to write them, …

Member Avatar for peter_budo
0
58
Member Avatar for baudday

Hi, So I'm working on a shirt printing quoter for a client. Basically you fill out a few fields and it tells you how much it would cost to print your design on 24+ shirts. After you see your total, you can place your order by filling in contact info …

Member Avatar for ﻼim
0
170
Member Avatar for baudday

Hi, I am busy working on a subscription site and am in need of some help. I don't have a merchant account and therefore cannot take credit cards directly. I see paypal has a service for $20 a month that allows you to take credit cards. I'm confused as to …

Member Avatar for baudday
0
120
Member Avatar for baudday

Hi, I need to do the exact same thing this website <http://abtees1.com/> does when you mouseover one of their shirts. I have absolutely no idea how to do this and I can't seem to find anything on the internet quite like it. Any help is greatly appreciated. Thanks!

Member Avatar for Jayavardhan
0
104
Member Avatar for baudday

Attached is a picture of the database layout I'm talking about. I would like to list out all the shirts in the database along with which categories they are in, and which textures and colors they come in. These are all many to many relationships, and hence the linking tables. …

Member Avatar for ppetree
0
122
Member Avatar for kanjigirl

Is it possible to control which files get included by looking at the browser type? For example if I'm using: [CODE]<?php include("includes/nav.php"); ?>[/CODE] but for all IE browser versions I'd like to call a different file, nav_ie.php, can that be done, and if so, how would I go about it?

Member Avatar for FlashCreations
-1
109
Member Avatar for baudday

I have a picture of my database design attached. Basically what I'm wondering is if there is a way that I can use the foreign keys I have set up. For instance, shirtColorsLink contains two columns, shirtId, and colorId. Both are foreign keys from the shirts table and the colors …

Member Avatar for baudday
0
94
Member Avatar for keyroche

Hey, This is probably a newbie question, but that is somewhat what I am to PHP. I need to create a two column table within a while statement. [CODE] <?php $letter = $data['letter']; $getCats = mysql_query("SELECT * FROM categories WHERE catName LIKE '$letter%' ORDER BY catName"); while ($cat = mysql_fetch_array($getCats)) …

Member Avatar for diafol
0
189
Member Avatar for baudday

I would like to start development on a web application but really have no idea how to do it. I like to think that I am pretty well versed in PHP, but feel like my coding practices are off. What I would like to know is, what is "the best" …

Member Avatar for baudday
0
149
Member Avatar for rajeesh_rsn

Hai I am developing a community website and peoples can create their profile and can add friends and all. But I need to show a notification if that visitor is online . Or show all visitors in online in a page. I use mysql database. I make it like this …

Member Avatar for Phaelax
0
459
Member Avatar for baudday

Hi, I'm fairly new to java, but feel as though I understand the concepts fairly well. I have a server at home that I would like for several computers to be able to back up to. With the help of NetBeans, I would like to do this without simply downloading …

Member Avatar for baudday
0
1K
Member Avatar for baudday

[code=php] foreach($files as $filename) { $file2 = $file2.$filename."<br />"; echo $file2; } [/code] What is wrong with this foreach loop? I just cannot figure it out. It is supposed to take the value from $files and store it in $filename. It's not doing this. It says $filename is an Array. …

Member Avatar for baudday
0
90
Member Avatar for baudday

Can someone please help me with this recursive function! It's messing up the incrementing of $x. I don't know what's wrong and I've been looking at it for so long now. [CODE=php]function list_dir($handle, $path) { // Loop over the directory and don\"t display certain files global $x; $x = 0; …

Member Avatar for baudday
0
174
Member Avatar for jespin

Hi all, This is my first post to be gentle. I'm currently researching for my dissertation project where i'm planning to make a forum that allows users to discuss crusing events. The site will allow user login and will have admin features. My issue occurs on the members side of …

Member Avatar for diafol
0
274
Member Avatar for baudday

I would really appreciate help here. I think I'm just missing something small but I just can't figure it out. I have 2 questions about the following code: [CODE=php] <? if(isset($_POST['download'])) { $x = 0; $download_path = dirname(__FILE__).'/'; echo "<b>Downloading from $download_path:</b><br />"; $file = array(); while($x <= $_POST['download']) { …

Member Avatar for baudday
0
126
Member Avatar for baudday

I know this is for MySQL, but there really isn't a forum for 'other databases.' I was wondering if anyone could point me in the right direction for learning SQLite. I tried googling it, and I did find some helpful things, but nothing that shows me how to use it. …

Member Avatar for baudday
0
121
Member Avatar for baudday

I was wondering if anyone had any good places I could look at to learn how to write a comments script. I need to allow comments on content if people are signed in. Thanks

Member Avatar for cwarn23
0
118
Member Avatar for masocha

l have been using WAMP,can anyone help me l need to move to LAMP

Member Avatar for sch_bern
0
126
Member Avatar for baudday

[code=php]<?php /* Dynamic Heading Generator By Stewart Rosenberger http://www.stewartspeak.com/headings/ This script generates PNG images of text, written in the font/size that you specify. These PNG images are passed back to the browser. Optionally, they can be cached for later use. If a cached image is found, a new image will …

Member Avatar for baudday
0
1K
Member Avatar for baudday

I've been working at this and I just can't get this. Can anyone please tell me why this just will not work? [CODE=php] function procNewsStory() { global $session, $database; $admin = $session->username; $date = time(); $title=$_POST['title']; $story=$_POST['story']; $story_id = time(); $q = "INSERT INTO " .TBL_SITE_NEWS. " VALUES ('$admin', '$time', …

Member Avatar for baudday
0
187
Member Avatar for baudday

Hi, I would like to set variables from session variables. Like this: [CODE=php] $fname=$_SESSION['fname']; $lname=$_SESSION['lname']; $email=$_SESSION['email']; $month=$_SESSION['month']; $day=$_SESSION['day']; $year=$_SESSION['year']; $city=$_SESSION['city']; $state=$_SESSION['state']; $uname=$_SESSION['uname']; $pass=$_SESSION['pass']; $encpass=$_SESSION['encpass'];[/CODE] I think this is triggering the following error: Warning: Unknown: Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised …

Member Avatar for baudday
0
90
Member Avatar for baudday

Can anyone provide me some tips on user management using php? What do you consider to go about registering users and allowing them to login.?

Member Avatar for baudday
0
99
Member Avatar for baudday

[CODE]$realUser = mysql_query("SELECT Username FROM my_db WHERE Username = $user ");[/CODE] This is not storing the $user value to $realUser. I am correctly using $_REQUEST['user'] to retrieve the value for $user from a form, and I am connected to my database. I understand there is an issue with PHP variables …

Member Avatar for nav33n
0
701
Member Avatar for baudday

Hi, I've been looking all over, and I can't seem to figure this out. I have to generate a random number within the range of -99 and 99. I know about RANDOM, but I don't know how I could use that to keep the numbers within this range. Any help …

Member Avatar for fpmurphy
0
181