marvin hunkin wrote:
Hi.
doing this script for an assignment, and got it basically working.
the only problems are:
1. wen i load the user form, the focus goes to the login button, and not
the first form field.
did try putting one it, did not like it.
so how do i do this?
is there a basic dom example, how to set focus on a form field, when the
form loads?
JavaScript. But I won't bore you with the exact way of doing it,
basically search google (or view source on the google page, since that
uses it too. It has to do with an onload handler setting focus() on a
specific element)
2. got a user name and password.
and enter username and password, and when the php script loads, it shows
the user name and the password.
want to hide this, and only have the message, now how do i accomplish this?
tried things on the web and tried on google, but could not find any
thing for this.
well... you *could* "potentialy" remove your
> echo $_POST['username'];
> echo $_POST['password'];
bit? :)
3. and got to provide the time, but how do i format it say for
australian east standard time?
just got the standard time, and jaws reads it out, as one line of text.
will paste the user form and php code.
if any one can offer code snippets, or point me to links, and examples,
let me know.
sorry about this, but these are stumping me and banging my head up
against the brick wall, so, would ask.
cheers Marvin.
use gmdate() to format it into "human-readable" format. If you want to
adjust it to your time, simply add your GMT offset to it, making:
gmdate('d-m-Y', time()+(10*60*60));
This adds 10 hours (10 hours x 60 min x 60 seconds) to your "base" GMT
timestamp, and then formats it. Not sure how big the offset it for
Australian East standard time, but it'll be something between 9 and 11
hours.
User Form:
<html>
<head>
<title>User Login Form</title>
</head>
<body>
<form action="UserDetails.php" method="post">
<p>User Name: <input type="text" name="username"> </p> <br>
<p>Password: <input type="text" name="password"> </p> <br>
<p><input type="submit" value="Login"> </p>
</form>
</body>
</html>
Php Script:
<?php
echo $_POST['username'];
echo $_POST['password'];
echo "Marvin Hunkin has successfully logged into the Tafe network. <br>\n";
echo "Please Wait ... Loading Your Personal Settings ... <br>\n";
echo time();
?>but
-- tul
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php