/    Sign up×
Community /Pin to ProfileBookmark

could you please help about this error message

I’m trying to control the size of image using this line of code.

[CODE]echo “<img src=”images/”. $row[‘name’] . “” alt=”” height=”150″ width=”234″ /> <br /></td></tr>”;[/CODE]

when use this tag to control size of images

[CODE]height=”150″ width=”234″[/CODE]

it displaying this error message and line31 is that first line of code above.

Parse error: syntax error, unexpected T_LNUMBER, expecting ‘,’ or ‘;’ in C:wampwwwuploadimages1.php on line 31.

to post a comment
PHP

4 Comments(s)

Copy linkTweet thisAlerts:
@TheBearMayJan 05.2009 — Try:
[code=php]echo "<img src="images/". $row['name'] . "" alt="" height="150px" width="234px" /> <br /></td></tr>";[/code]
Copy linkTweet thisAlerts:
@SyCoJan 05.2009 — or use single quotes outside then you don't have to escape the double quotes inside.

[code=php]echo '<img src="images/'. $row['name'] . '" alt="alt text here" height="150" width="234" /> <br /></td></tr>';[/code]
Copy linkTweet thisAlerts:
@diltonauthorJan 05.2009 — thank. it works
Copy linkTweet thisAlerts:
@NogDogJan 05.2009 — And just FYI, single quotes are OK for HTML attribute values, so you could do the inverse:
[code=php]
echo "<img src='images/". $row['name'] . "' alt='' height='150' width='234' /> <br /></td></tr>";
[/code]
×

Success!

Help @dilton spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.19,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...