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
0 Endorsements
Ranked #3K
~4K People Reached
About Me

30++ years in business on the Engineering side, always enjoyed dabbling in the programming side of things, then one day I was asked to do a quick website. That was fun, so another friend asked if I could do some dynamic pages, and I picked up PHP 3 years…

Favorite Forums
Favorite Tags
Member Avatar for RogueEU

i cannot seem to find the syntax error Parse error: syntax error, unexpected T_VARIABLE on line 24 18 $user = $_REQUEST['username']; 19 $pass = $_REQUEST['password']; 20 21 $user = mysql_real_escape_string($_REQUEST['username']); 22 $pass = mysql_real_escape_string($_REQUEST['password']); 23 24 $query = 'SELECT * FROM user, user WHERE '$user' = username AND '$pass' = …

Member Avatar for jovstudios
-1
668
Member Avatar for Pampas

I have problems cleaning up a couple of input field. I've been pecking away at this issue since I wrote the application about 18 months ago. When I think I have it cleaned up; it pops up again, when users violate rules (as they often will do) and the extra …

Member Avatar for diafol
0
210
Member Avatar for shella

Hi, I'm trying to finish a scripts to manage newsletter from a website but I encountered a strange weird stuff just at the end. Basically when I send emails everything seem to be alright. I sent 5 email. 3 of them was received perfectly but the other 2 not. Just …

Member Avatar for Stefano Mtangoo
0
139
Member Avatar for dhruv_arora

Hey, I created a simple user register script which later stores the data in a mysql database. What I did initially was that a small code would count the number of rows in the database and then automatically increase the variable by 1 to set the user id. For example …

Member Avatar for dhruv_arora
0
274
Member Avatar for bob on whidbey

Some simple php code; [code=php] $dir = '../images/'; $file = $_GET['name']; // Last, First M. "nickname" $f = $dir.$file; list($width, $height, $type, $attr) = getimagesize($f); echo $f."<br />"; echo "width ".$width."<br />"; echo "<img src='$f' $attr title='getimagesize example' />"; [/code] while the last echo line displays the image correctly (and …

Member Avatar for diafol
0
3K
Member Avatar for jacksantho

Hi, Anyone please help out. By using select query i am getting this following output. [B] itemname idno name price A B01 sa1 10 B B01 sa1 40 C B01 sa1 50 D B01 sa1 100 [/B] But i don't want this(as above one) type of display in my browser. …

Member Avatar for Pampas
0
165
Member Avatar for MitkOK

Here are two simple functions to validate name and e-mail . int [COLOR="#008000"]valName[/COLOR]( string $arg1 ) - this function returns 1 if name is correct, 0 if incorrect int [COLOR="Green"]valMail[/COLOR]( string $arg1 ) - this function returns 1 if name is correct, 0 if incorrect

0
181