Looking for a script like on this website:
http://www.istockphoto.com
When clicking in search form, additional search form appears.
Thank you.
Looking for a script like on this website:
http://www.istockphoto.com
When clicking in search form, additional search form appears.
Thank you.
If you know anything about CSS and javascript you could try to code it, and it shouldn't be too hard.
Code:<script type="text/javascript"> function Show_more(){ document.getElementById("more").style.display = "block"; } </script>There is a start for you. (I haven't tested it. . . )Code:<form> <input type="text" onfocus="Show_more()"> <div id="more" style="display:none">MORE</div> </form>
You can also check out this tutorial.
Last edited by Jas; 12-22-2007 at 10:40 PM.
--Jas
function GreatMinds(){ return "Think Like Jas"; }
Can I see your search? A link to it?
Jas, thank you very much. That's what i wanted. It works. Thank you.
Hi,
need some help again...................
I want a code that will allow only the selected ppl to access the page....
One way that i thought of :
Its Foolish to ask that 'is it possible' as there are gr8 and dam inelligent coders....As we can block some IP from viewing the page in such fashion can we do :
Allow only certain IP to access the page.
Thanks in advance...
I also wanted to have advice that "Is this method devisible ????"
Thanks.
.htaccess:
ORCode:order deny,allow deny from 192.22.33.44 deny from badwebsite.com
You can use IP addies, or domain names, or both, you can select certain files, or the whole directory that .htaccess is placed in.Code:order deny,allow deny from 22.658.168.01 allow from 192.22.33.44
For a specific file:
you can learn more [utl=http://tips-scripts.com]here[/url] under the .HTACCESS sectionCode:<files image.gif> order deny,allow deny from 192.22.33.44 </files>![]()
{CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
Follow Me on Twitter: @InkingHubris
PHP Code:$result = mysql_query("SELECT finger FROM hand WHERE id=3");
echo $result;
i got ur point but what i want is a global command to block all other ppl other than i have allowed
ex :order deny,allow
deny from Every body else than allowed once
allow from 192.22.33.44
Bookmarks