RE: [PHP] Questions from a Newbie - Please Help

2010-10-19 Thread Tommy Pham
> -Original Message- > From: Steve Staples [mailto:sstap...@mnsi.net] > Sent: Tuesday, October 19, 2010 11:51 AM > To: php-general > Subject: RE: [PHP] Questions from a Newbie - Please Help > > On Tue, 2010-10-19 at 11:18 -0700, Tommy Pham wrote: > &

RE: [PHP] Questions from a Newbie - Please Help

2010-10-19 Thread Steve Staples
On Tue, 2010-10-19 at 11:18 -0700, Tommy Pham wrote: > > -Original Message- > > From: Steve Staples [mailto:sstap...@mnsi.net] > > Sent: Tuesday, October 19, 2010 11:07 AM > > To: Ethan Rosenberg > > Cc: php-general@lists.php.net > > Subject: RE: [PHP] Q

RE: [PHP] Questions from a Newbie - Please Help

2010-10-19 Thread Tommy Pham
> -Original Message- > From: Steve Staples [mailto:sstap...@mnsi.net] > Sent: Tuesday, October 19, 2010 11:07 AM > To: Ethan Rosenberg > Cc: php-general@lists.php.net > Subject: RE: [PHP] Questions from a Newbie - Please Help > > > > i am pretty sure i r

RE: [PHP] Questions from a Newbie - Please Help

2010-10-19 Thread Steve Staples
i am pretty sure i read it on here already... but your PHP code looks wrong. ORIGNAL CODE: /* * Create Database test22 */ FIXED CODE: END FIXX firstly... you are missing your ending ; AFTER the " on most of your lines... and i've seen this before, where it wont throw the err

RE: [PHP] Questions from a Newbie

2010-10-19 Thread Tommy Pham
> -Original Message- > From: Ethan Rosenberg [mailto:eth...@earthlink.net] > Sent: Tuesday, October 19, 2010 9:19 AM > To: Tommy Pham; php-general@lists.php.net > Subject: RE: [PHP] Questions from a Newbie > > Dear List - > > The error log only exists if he con

RE: [PHP] Questions from a Newbie - Please Help

2010-10-19 Thread Ethan Rosenberg
> Sent: Tuesday, October 19, 2010 12:05 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Questions from a Newbie > > Tamara - > > Thanks. > > No error_log. > The error log only exists if he configures it properly and the script has error. IE: log_errors & er

RE: [PHP] Questions from a Newbie

2010-10-19 Thread Ethan Rosenberg
M 10/19/2010, Tommy Pham wrote: > -Original Message- > From: Ethan Rosenberg [mailto:eth...@earthlink.net] > Sent: Tuesday, October 19, 2010 12:05 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Questions from a Newbie > > Tamara - > > Thanks. > >

RE: [PHP] Questions from a Newbie

2010-10-19 Thread Tommy Pham
> -Original Message- > From: Ethan Rosenberg [mailto:eth...@earthlink.net] > Sent: Tuesday, October 19, 2010 12:05 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Questions from a Newbie > > Tamara - > > Thanks. > > No error_log. > The error

Re: [PHP] Questions from a Newbie

2010-10-19 Thread Ethan Rosenberg
Tamara - Thanks. No error_log. This works ... Ethan ++ At 02:23 AM 10/19/2010, Tamara Temple wrote: On Oct 18, 2010, at 11:01 PM, Ethan Rosenberg wrote: I've added the code you suggest, and I still get a blank screen. Should I be explicitly be using mysqli functions; eg mysqli_

RE: [PHP] Questions from a Newbie

2010-10-18 Thread Tommy Pham
> -Original Message- > From: Paul M Foster [mailto:pa...@quillandmouse.com] > Sent: Sunday, October 17, 2010 9:46 PM > To: php-general@lists.php.net > Subject: Re: [PHP] Questions from a Newbie > > On Sun, Oct 17, 2010 at 01:00:44AM -0400, Ethan Rosenberg wr

Re: [PHP] Questions from a Newbie

2010-10-17 Thread Paul M Foster
On Sun, Oct 17, 2010 at 01:00:44AM -0400, Ethan Rosenberg wrote: > Dear List - > > Here are some questions, which I am sure are trivial, but I am a > newbie, and cannot find the answers online > > I cannot get the following to work. In my Firefox [Iceweasel] > browser, I enter the following

Re: [PHP] Questions from a Newbie

2010-10-17 Thread Tommy Pham
On Sun, Oct 17, 2010 at 11:22 AM, Ethan Rosenberg wrote: > > > > Tommy - > > Thanks. > > As I stated, I am a newbie. > > 1] I am trying to shorten the learning curve by asking some questions, which > I understand are probably trivial.  A whole MySQLi list of functions at this > point is to much

Re: [PHP] Questions from a Newbie

2010-10-17 Thread Tamara Temple
gah, i botched that up. For the first part, you want the following: $cxn = new mysql($host, $user, $password); $res = $cxn->query("create database test22:); if (!$res) { die("Failed to create database test22: " . $cxn->error()); } Then, reopen the

Re: [PHP] Questions from a Newbie

2010-10-17 Thread Tamara Temple
On Oct 17, 2010, at 1:22 PM, Ethan Rosenberg wrote: At 01:41 AM 10/17/2010, Tommy Pham wrote: > I cannot get the following to work. In my Firefox [Iceweasel] browser, I > enter the following URL: [w/ the http] Whenever you get a blank screen running a php application, the place to look i

Re: [PHP] Questions from a Newbie

2010-10-17 Thread a...@ashleysheridan.co.uk
are. You can do this from the php.ini, look for display_errors. Thanks, Ash http://www.ashleysheridan.co.uk - Reply message - From: "Ethan Rosenberg" Date: Sun, Oct 17, 2010 19:22 Subject: [PHP] Questions from a Newbie To: "Tommy Pham" , At 01:41 AM 10/17/20

RE: [PHP] Questions from a Newbie

2010-10-17 Thread Ethan Rosenberg
At 01:41 AM 10/17/2010, Tommy Pham wrote: > -Original Message- > From: Ethan Rosenberg [mailto:eth...@earthlink.net] > Sent: Saturday, October 16, 2010 10:01 PM > To: php-general@lists.php.net > Subject: [PHP] Questions from a Newbie > > Dear List - > > Here

RE: [PHP] Questions from a Newbie

2010-10-17 Thread Tommy Pham
> -Original Message- > From: Alexis [mailto:phplis...@antonakis.co.uk] > Sent: Sunday, October 17, 2010 4:10 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Questions from a Newbie > > Ethan,you have the end of line semi colons enclosed in double > quote

Re: [PHP] Questions from a Newbie

2010-10-17 Thread Christian Heinrich
Am Sonntag, den 17.10.2010, 01:00 -0400 schrieb Ethan Rosenberg: > Dear List - > > Here are some questions, which I am sure are trivial, but I am a > newbie, and cannot find the answers online > > I cannot get the following to work. In my Firefox [Iceweasel] > browser, I enter the followin

Re: [PHP] Questions from a Newbie

2010-10-17 Thread Alexis
Ethan,you have the end of line semi colons enclosed in double quotes..move them to the true end of line. On 17/10/10 04:45, Christian Heinrich wrote: Am Sonntag, den 17.10.2010, 01:00 -0400 schrieb Ethan Rosenberg: Dear List - Here are some questions, which I am sure are trivial, but I am a n

RE: [PHP] Questions from a Newbie

2010-10-16 Thread Tommy Pham
> -Original Message- > From: Ethan Rosenberg [mailto:eth...@earthlink.net] > Sent: Saturday, October 16, 2010 10:01 PM > To: php-general@lists.php.net > Subject: [PHP] Questions from a Newbie > > Dear List - > > Here are some questions, which I am sure are triv

[PHP] Questions from a Newbie

2010-10-16 Thread Ethan Rosenberg
Dear List - Here are some questions, which I am sure are trivial, but I am a newbie, and cannot find the answers online I cannot get the following to work. In my Firefox [Iceweasel] browser, I enter the following URL: [w/ the http] localhost/CreateNew.php All I get is a blank browser