|
-
Mar 7th, 2007, 02:56 AM
#1
Thread Starter
Member
[RESOLVED] DUN understand these CODES!!!URGENT HELP!
I was wondering why doesnt the codes <?php echo 'my name is lyna-licious!!!'; ?> does not appear in the browser.
what does this code: <?php echo 'my name is lyna-licious!!!'; ?> actually means????
These are the overall codes.
<p>This is going to be ignored.</p>
<?php echo 'my name is lyna-licious!!!'; ?>
<p>This will also be ignored.</p>
Last edited by penagate; Mar 24th, 2007 at 12:10 PM.
Reason: mark as resolved.
-
Mar 7th, 2007, 03:03 AM
#2
Re: DUN understand these CODES!!!URGENT HELP!
well... the <?php tells the server that what follows is PHP code....
Echo is a PHP command to send output to the client browser....
and ?> tells the server it's the end of the PHP code....
Why doesn't it show? Beats me... depends on what's around it... is the html commented out? is it in the headers? Try View Source and see if it's in there somewhere.
-tg
-
Mar 7th, 2007, 07:35 AM
#3
Re: DUN understand these CODES!!!URGENT HELP!
If i understand you correctly <?php echo __ ?> wont appear in the browser because that is the instruction to the server, therefore the end user would not need to see it. However the string being echoed, 'my name is lyna-licious!!!' would no doubt appear in your browser.
ILMV
-
Mar 8th, 2007, 08:07 PM
#4
Thread Starter
Member
Re: DUN understand these CODES!!!URGENT HELP!
ohhhh...i get it now!!! thanks u so much. really appreciated it ))
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|