Re: [PHP] What's wrong????

2002-04-29 Thread Arpan De
p through your web > server. Examining that page will tell you what modules are loaded. > > ---John Holmes... > > > -Original Message- > > From: Arpan De [mailto:[EMAIL PROTECTED]] > > Sent: Monday, April 29, 2002 6:09 PM > > To: [EMAIL PROTECTED] > > S

Re: [PHP] What's wrong????

2002-04-29 Thread Arpan De
making this hard on yourself...PHP is easy to learn. > > ---John Holmes... > > > -Original Message- > > From: Arpan De [mailto:[EMAIL PROTECTED]] > > Sent: Monday, April 29, 2002 5:42 PM > > To: [EMAIL PROTECTED] > > Subject: [PHP] What's wrong > >

[PHP] What's wrong????

2002-04-29 Thread Arpan De
What is wrong with the following code? "); echo("$firstname"); echo("$lastname"); echo("$userid"); echo(""); } mssql_free_result($sqlResult); mssql_close($connection); ?> When the above code is executed, I am getting the following error: Fatal error: Call to undefined function mssql

[PHP] Database Based

2002-04-29 Thread Arpan De
I want to insert userid, password & the e-mail address entered in a Form by users in a database but only after ensuring that the userid & the e-mail address doesn't exist in the database in order to avoid duplicate userids & e-mail addresses. This is what I have done: "; echo "Your Password is ",

Re: [PHP] Insert in database

2002-04-29 Thread Arpan De
ose($connectionString); > > echo("Hi ",$_POST['fname']," ",$_POST['lname'],"Thank You For > Registering !!!"); > } > > ?> > > Rick > > "It is the mark of an educated mind to be able to entertain a thought &

[PHP] Insert in database

2002-04-29 Thread Arpan De
I have a simple HTML Form where a user has to enter his first & last name which will be inserted in a SQL Server database table. The PHP code which does the needful is as follows (I have created a DSN named PHPInsert successfully as well): The above code, when executed, throws the following err

Re: [PHP] Forms

2002-04-29 Thread Arpan De
n Tuesday 30 April 2002 01:25, Arpan De wrote: > > > But I don't know why I am not getting the output. I am just getting the > > following error: > > > > Notice: Undefined variable: fame in d:\inetpub\wwwroot\php\Form1.php on > > line 3 > > >

[PHP] Forms

2002-04-29 Thread Arpan De
I created a simple html form with only one textbox & a submit button as follows: This is form1.php Hi But I don't know why I am not getting the output. I am just getting the following error: Notice: Undefined variable: fame in d:\inetpub\wwwroot\php\Form1.php on line 3 In order to p