Re: PHP any Mysql connection- new b

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Sat, 8 Jan 2005 16:10:47 +0000 (GMT), babu <garavindbabu@xxxxxxxxxxx> wrote:
> Hi all,
> 
> I am using php 3.0 and mysql and win xp.
> i want to add users to database through php page.
> 
> adduser.php
> <html>
> <FORM METHOD="post" ACTION="add.php">
> Real Name: <INPUT TYPE=text MAXLENGTH=70 NAME="real_name" SIZE=20><Br>
> Username: <INPUT TYPE=text MAXLENGTH=70 NAME="username" SIZE=20><Br>
> Password: <Input Type=text Maxlength=70 Name="userpass" Size=10><Br>
> 
> <INPUT TYPE=submit VALUE="Add"> <INPUT type=reset VALUE="Reset Form"></form>
> </tr></td></table></tr></td></table>
> </body>
> </html>
> 
> when i enter the fileds and submit ,the action is not performed, instead add.php file is >opened.
What do you mean by it? You have action as add.php then it must be
opened. Are you getting all page code in plain text? If so please
check your php installation.
BTW php3 is outdated and I never see it running on Apache 2 with win xp.

zareef ahmed 




> add.php
> <?
> 
> $ID = uniqid("userID");
> 
> $db = mysql_connect("localhost","root","halfdinner");
> 
> mysql_select_db (userpass);
> 
> $result = mysql_query ("INSERT INTO users (id, real_name, username, password )
> VALUES ('$ID', '$real_name', '$username', '$userpass') ");
> if(!$result)
> {
> echo "<b>User not added:</b> ", mysql_error();
> exit;
> }
> if($result)
> {
> mysql_close($db);
> print "User <b>$username</b> added sucessfully!";
> }
> else
> {
> print ("Wrong Password");
> }
> ?>
> 
> is the problem due to mysql and php connection.i am using windows xp with apache2.
> 
> i followed the steps said by someone in the previous thread.that is adding libmysql.dll to system32 and so on. I cannot find php_mysql.dll in php.ini.
> can some one help
> 
> Thanks
> babu
> 
> 
> ---------------------------------
>  ALL-NEW Yahoo! Messenger - all new features - even more fun!
> 


-- 
Zareef Ahmed :: A PHP Developer in India ( Delhi )
Homepage :: http://www.zareef.net

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux