silencer0 wrote:the rating at this site :
http://www.reflexive.com/SuperTextTwist.html does this..
i would like to know how to do this :p i would like to have the same at my site but i really don't know how to do this

i hope you guys can help me..
One question at a time if its not related, please.
Can you provide a screenshot of what you are talking about? I either: 1) Don?t understand, 2) Couldn?t find it on the site.
silencer0 wrote:==> another question, how to do the same with a field? if the field's empty it shows please enter password .. or else please click login..
i tried this in php it wasn't working
- Code: Select all
if (empty($_POST['field']))
{
echo " please enter password ..";
}
else
{
echo "please click login..";
}
^^ this didn't work, as it doesn't refreshes it'sself..
Thanks.
- Silencer0
Refreshes itself?
What gives you the idea that it should refresh itself? -- assuming you have
<input type="password" value="" name="field" /> in your HTML, this code should work.
If you submit the form, but ?field? is empty, it will print ?please enter password ..?, if it is filled out, it will say ?please click login..?