Jump to content

unexpected T_STRING


vinpkl

Recommended Posts

hi all

 

i m starting my code with the following code line

 

<?php
$url = 'products.php?dealer_id=. $leftrow['dealer_id'] . "&category_id=" . $leftrow['category_id'].';
?>

 

but it is giving me error

Parse error: syntax error, unexpected T_STRING in E:\xampp\htdocs\vineet\url.php on line 2

 

there is no other code on this page. this is starting line

 

vineet

Link to comment
https://forums.phpfreaks.com/topic/136372-unexpected-t_string/
Share on other sites

<?php
$url = 'products.php?dealer_id='. $leftrow['dealer_id'] . "&category_id=" . $leftrow['category_id'];
?>

 

Corrected.

 

YOu were missing ' after _id= and had an extra .' after the category_id which was not necessary.

 

hi premiso

 

thanks it worked

 

vineet

Link to comment
https://forums.phpfreaks.com/topic/136372-unexpected-t_string/#findComment-711495
Share on other sites

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.