Jump to content

[SOLVED] Quick If statement conditions structure question


Petsmacker

Recommended Posts

How can this be written properly?

 

if ((isset($_GET['do'])=='read') && (isset(ereg("^[0-9]+$", $_GET['id'])))){

 

The error it gives:

Parse error: syntax error, unexpected T_STRING, expecting T_VARIABLE or '$' in /home/tbhgweb/public_html/mail.php on line 133

 

Its the ereg part it doesn't like.

Magic, it works. If theres any other way of shortening it please let me know. I used to only have it like this:

 

if (($_GET['do']=='read') && (ereg("^[0-9]+$", $_GET['id']))){

 

And it was all fine, but then I asked to have diplay_errors on and my site went slightly mental. But if what you suggested is the best, I shall go with it, cheers!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.