Jump to content

carefree

Members
  • Posts

    72
  • Joined

  • Last visited

    Never

Everything posted by carefree

  1. Considerin KELLZ lies about her age (14yo) ...More like a 40yo COP!! I wouldnt believe her about this either.
  2. How can youtube store 100 million videos. I mean the storage costs must be immense, or do they have there own servers?? If they do heres the question...How can I set up my own server and stop paying 300+ bucks a month for hosting. I have the money to buy the servers but dont know whats involved. Any ideas people??
  3. I have a search portal on my site, but i have to click the <input> box before I can search for something. <input name="search" type="text" id="search" size="60"> Is there a way to make the prompt appear in the <input> box by default??
  4. A weird obsession ........HMMMMMMMMMM Kellz posting this message! ??? If it was up to you Kellz you would have this entire forum decorated in flowers and fairies. Still think your a COP!
  5. Thanks for the link . Tested all my forms - No XSS on any of my sites
  6. I have found a good base to start off with: http://www.formtools.org
  7. I want to test my site for Cross Site Scripting, what code do I need to insert into the search forms??
  8. I want to create a user mail sytem like google and yahoo , where users sign up to a free account and have to visit the site to see the mail. Anyone know what program/script yahoo is using ? If not where would I start , anyone know of a Opensource program where I could build this off of?
  9. Is there a way to convert scripts into desktop applications??
  10. Is there a way to SELECT a table the draw two seperate rows from that table? Heres what im trying to do: $cnx = mysql_connect("localhost", "DATABASE USER", "PASSWORD"); mysql_select_db("DATABASE NAME", $cnx); $sql = mysql_query("SELECT VID FROM video") or die (mysql_error()); while($row = mysql_fetch_array($sql)){ $row_array[] = $row['VID']; } mysql_close($cnx); $random_row = $row_array[rand(0, count($row_array) - 1)]; echo '<a href="http://www.DOMAIN.com/"><img src="http://DOMAIN.com/vid/thumb/', urlencode($random_row),'.jpg" border="0"></a>'; Ok so the "VID" row is the url of the video thumb I also want to draw the name from the same video and place it into the "http://www.DOMAIN.com/" section . The rows name is "title" Ive tried to use: $cnx = mysql_connect("localhost", "DATABASE USER", "PASSWORD"); mysql_select_db("DATABASE NAME", $cnx); $sql = mysql_query("SELECT VID,table FROM video") or die (mysql_error()); while($row = mysql_fetch_array($sql)){ $row_array[] = $row['VID,table']; But no luck :-\
  11. Ive tried : <!--#include file="cgi-bin/at/in.cgi?yourdomain.com" --> It works on the index page but but it dosent work on directories eg. http://mysite.com/every/index.shtml
  12. I know this is a simple coding question but im going crazy trying to get it to work :'( This include works on my index page: <!--#include virtual="cgi-bin/at/in.cgi?yourdomain.com"--> but not the directory urls (http://www.mysite.com/every/index.shtml) Ive tried: <!--#include virtual="/cgi-bin/at/in.cgi?yourdomain.com"--> And : <!--#include virtual="http://www.mysite.com/cgi-bin/at/in.cgi?yourdomain.com"--> My relative url is: ..../apache/sites/htdocs/ Can anyone help out a moron :-\
  13. Your right, Google has more relevant searching. Theres also a plus with having different results for different engines - more variety, but thats my personal opinion. We will continue to build on this platform with additional functions and services and of course - improve relevancy
  14. Just finished our search engine. Take it for a test spin and tell us what you think: http://www.search-blue.com
  15. Forums are a haven for cops pretending to be 15 yo girls. Just wanted to let other guys here know that Sounds like your looking for a suga daddy...then once he suggests something sexual youve got him. Still dont trust ya ..sorry
  16. I dont want to be rude... but this sounds suss. I mean most ppl here are older guys and your a COP....I mean a "15yo" girl. <!--Note to guys: Get my meaning guys!! -->
  17. Sessions OR Cookies which one is better??
  18. Found the solution: <input type="radio" onclick="javascript:Determine('Web','1');" checked>Web</input> <input type="radio" onclick="javascript:Determine('Images','0');" >Images</input> <input type="radio" onclick="javascript:Determine('Audio','0');">Audio</input> <input type="radio" onclick="javascript:Determine('Video','0');">Video</input> <input type="radio" onclick="javascript:Determine('News','0');">News</input> <input type="radio" onclick="javascript:Determine('Sport','0');">Sport</input> <input type="radio" onclick="javascript:Determine('Blogs','0');">Blogs</input> <input type="radio" onclick="javascript:Determine('Forums','0');">Forums</input> <input type="radio" onclick="javascript:Determine('Kids','0');">Kids</input> </td> Thanks for the help guys
  19. Heres also a link to the site: http://www.search-blue.com You can see what its doing there
  20. I wanted to selct a radio button and it changes like the dropdown boxes do kinda like a hyperlink I was looking at : <select onchange="if (this.options[this.selectedIndex].value!='') location = this.options[this.selectedIndex].value;" name="menu"> And thought i might be alble to do this with radio buttons
  21. OK heres the original code: <?php if(!isset($_REQUEST['type']) || $_REQUEST['type']=="Web") { ?> <form name="form1" method="get" action="redir.php"> <table width="100%" height="3" border="0" cellpadding="0" cellspacing="0"> <tr > <td height="18" align="center"> <input name="search" type="text" id="search" value="<?php if(isset($_REQUEST['search'])) echo $_REQUEST['search']; ?>" size="60"> <input name="type" type="hidden" id="type" value="<?php echo $type; ?>"> <input class=search type="submit" name="Submit" value="Web Search"> </td> </tr> <tr > <td height="17" align="center"> <form> <span style="VERTICAL-ALIGN: bottom">Select a Platform: </span><select onchange="if (this.options[this.selectedIndex].value!='') location = this.options[this.selectedIndex].value;" name="menu"> <option value="javascript:Determine('Web','1');">Web</option> <option value="javascript:Determine('Images','0');">Images</option> <option value="javascript:Determine('Audio','0');">Audio</option> <option value="javascript:Determine('Video','0');">Video</option> <option value="javascript:Determine('News','0');">News</option> <option value="javascript:Determine('Sport','0');">Sport</option> <option value="javascript:Determine('Blogs','0');">Blogs</option> <option value="javascript:Determine('Forums','0');">Forums</option> <option value="javascript:Determine('Kids','0');">Kids</option> </select></td> </tr></table></form> And heres what im trying to do: <?php if(!isset($_REQUEST['type']) || $_REQUEST['type']=="Web") { ?> <form name="form1" method="get" action="redir.php"> <table width="100%" height="3" border="0" cellpadding="0" cellspacing="0"> <tr > <td height="18" align="center"> <input name="search" type="text" id="search" value="<?php if(isset($_REQUEST['search'])) echo $_REQUEST['search']; ?>" size="60"> <input name="type" type="hidden" id="type" value="<?php echo $type; ?>"> <input class=search type="submit" name="Submit" value="Web Search"> </td> </tr> <tr > <td height="17" align="center"> <input type="radio" value="javascript:Determine('Web','1');" checked >Web</input> <input type="radio" value="javascript:Determine('Images','0');">Images</input> <input type="radio" value="javascript:Determine('Audio','0');">Audio</input> <input type="radio" value="javascript:Determine('Video','0');">Video</input> <input type="radio" value="javascript:Determine('News','0');">News</input> <input type="radio" value="javascript:Determine('Sport','0');">Sport</input> <input type="radio" value="javascript:Determine('Blogs','0');">Blogs</input> <input type="radio" value="javascript:Determine('Forums','0');">Forums</input> <input type="radio" value="javascript:Determine('Kids','0');">Kids</input> </td> </tr></table></form>
  22. Not sure if this is the right place to post...all my pages are in php. Im trying to change my dropdown boxes to radio buttons but I cant get anywhere and its driving me insane Heres my original code: <?php if(!isset($_REQUEST['type']) || $_REQUEST['type']=="Web") { ?> <form name="form1" method="get" action="redir.php"> <table width="100%" height="3" border="0" cellpadding="0" cellspacing="0"> <tr > <td height="18" align="center"> <input name="search" type="text" id="search" value="<?php if(isset($_REQUEST['search'])) echo $_REQUEST['search']; ?>" size="60"> <input name="type" type="hidden" id="type" value="<?php echo $type; ?>"> <input class=search type="submit" name="Submit" value="Web Search"> </td> </tr> <tr > <td height="17" align="center"> <form> <span style="VERTICAL-ALIGN: bottom">Select a Platform: </span><select onchange="if (this.options[this.selectedIndex].value!='') location = this.options[this.selectedIndex].value;" name="menu"> <option value="javascript:Determine('Web','1');">Web</option> <option value="javascript:Determine('Images','0');">Images</option> <option value="javascript:Determine('Audio','0');">Audio</option> <option value="javascript:Determine('Video','0');">Video</option> <option value="javascript:Determine('News','0');">News</option> <option value="javascript:Determine('Sport','0');">Sport</option> <option value="javascript:Determine('Blogs','0');">Blogs</option> <option value="javascript:Determine('Forums','0');">Forums</option> <option value="javascript:Determine('Kids','0');">Kids</option> </select></td> </tr></table></form> I just want to change it to radio select buttons: <input type="radio" value="V1" checked name="R1"> I have no idea what im doing.....any ideas??
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.