TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 10-18-2009, 09:11 PM   #1 (permalink)
The Acquainted
 
Dave's Avatar
 
Join Date: Apr 2008
Posts: 110
Thanks: 97
Dave is on a distinguished road
Default onfocus and onblur events -- I'm confused, of course...

This is the first time I have dealt with onfocus and onblur. I researched it, so I know a little more that I did.

In the following example snippet, however, I don't get the \" part. I know that the \ is used to escape the next character. However, I'm still confused. So, my questions are:

1. Is the coding in the onfocus example a Javascript applet? (...don't know javascript..)
2. What is the \" doing?

Thanks,
Dave

PS. I did not compose the example code below. (Unlike my code, it works.)

PHP Code:
<?php

if (!$username&&!$userid)
  echo 
"<span class='bigheader'>
              <img src='login.png'>
        </span>
        <p>" 
;
else
     echo 
"<p><a href='logout.php'>Log out</a><p>
        <form action='user.php'
              method='GET'
              style='display:inline;'>
          <input type='text'
                 size='15'
                 value='Jump to member'
                 name='user'
--->             onFocus=\"if (this.value == 'Jump to member')
                           { this.value=''; }\"
--->             onblur =\"if (this.value == '')
                           { this.value='Jump to member'; }\">
                 <br>
          <input type='submit'
                 value='GO'><p>
        </form>
       " 
;
?>
Dave is offline  
Reply With Quote
Old 10-19-2009, 09:58 AM   #2 (permalink)
Jim
The Addict
 
Jim's Avatar
 
Join Date: Nov 2007
Location: the Netherlands
Posts: 281
Thanks: 2
Jim is on a distinguished road
Default

When in PHP, a double quote (") marks the start or end of a string (line of text). When you want to use a double quote in a string, you will have to tell PHP that you are not using the double quote to end or start the string, but that it has to be part of the string itself. Do to so, you just have to add a slash before the double quote and PHP understands.

So basically:

echo "your name is "jimmy"!"; // wrong, will result in an error
echo "your name is \"jimmy\"!"; // right, will give us: your name is "jimmy"
__________________
Nunchaku! Who doesn't like martial arts? =)
Send a message via MSN to Jim Send a message via Skype™ to Jim
Jim is offline  
Reply With Quote
The Following User Says Thank You to Jim For This Useful Post:
Dave (10-19-2009)
Old 10-20-2009, 12:54 AM   #3 (permalink)
The Acquainted
 
Dave's Avatar
 
Join Date: Apr 2008
Posts: 110
Thanks: 97
Dave is on a distinguished road
Default

Thanks. I "thought" I understood that the \ character allowed the next character to not be literally taken (e.g., \n). However, I have now re-learned that it depends on the character, e.g., \" vs \t, etc.

Much obliged.
Dave is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 06:02 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design