Re: [PHP] ereg parse error problem

2001-07-12 Thread Philip Murray

Hi Lara,

The problem isn't with the if(ereg) line, its the line above.

Put a semi-colon at the end of your $string = "..[snip].." line

Cheers

 -  -- -  -   -
Philip Murray - Senior Systems Engineer
[EMAIL PROTECTED] - Open2View.com
http://www.open2view.com
- -  -- -   -

- Original Message -
From: "Lara J. Fabans" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, July 13, 2001 1:59 PM
Subject: [PHP] ereg parse error problem


> Hi, friends,
>
> I'm receiving a parse error on the if (ereg... )
> lines of this code.  I looked at the online manual and modeled my two
> ereg's after it.
> When I kept getting parse errors, I decided to copy the original from the
> manual into
> my code, and it too received a parse error.
>
> Can someone please help me resolve this?
>
> Thank you,
>
> Lara
>
>
> -
> 
> $string = "<a href="http://www.qksrv.net/click-297915-361662";
> target="_top" > <img
> src="http://www.123posters.com/images/m-mase01.jpg";
> alt="Mase Necklace"></a> <img
> src="http://www.qksrv.net/image-297915-361662";
> height="1" width="1" border="0">"
>
> if (ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})", $string, $regs))
> {
>  echo "$regs[3].$regs[2].$regs[1]";
> } else {
>  echo "Invalid date format: $date";
> }
>
>
> if (ereg ("img src="(.*)"", $string, $regs))
> {
> echo $regs[1];
> } else
> {
> echo "nope1";
> }
>
> if (eregi("a href="(.*)"", $string, $regs))
> {
> echo $regs[1];
> } else
> {
> echo "nope2";
> }
> ?>
> -
> Lara J. Fabans
> Lodestone Software, Inc
> [EMAIL PROTECTED]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] ereg parse error problem

2001-07-12 Thread Lara J. Fabans

Hi, friends,

I'm receiving a parse error on the if (ereg... )
lines of this code.  I looked at the online manual and modeled my two 
ereg's after it.
When I kept getting parse errors, I decided to copy the original from the 
manual into
my code, and it too received a parse error.

Can someone please help me resolve this?

Thank you,

Lara


-
http://www.qksrv.net/click-297915-361662"; 
target="_top" > Mase Necklace "

if (ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})", $string, $regs))
{
 echo "$regs[3].$regs[2].$regs[1]";
} else {
 echo "Invalid date format: $date";
}


if (ereg ("img src="(.*)"", $string, $regs))
{
echo $regs[1];
} else
{
echo "nope1";
}

if (eregi("a href="(.*)"", $string, $regs))
{
echo $regs[1];
} else
{
echo "nope2";
}
?>
-
Lara J. Fabans
Lodestone Software, Inc
[EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]