Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 2393 points

Coulton

Favorite Answers31%
Answers29
  • Basic javascript help.?

    I am trying to do a live search field and I can't seem to get it to work! Here is my code do you see any flaws in it? Thanks.

    INDEX.HTML

    <html>

    <head>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jq...

    <script type="text/javascript">

    function getStates(value) {

    $.post("getStates.php",{partialState:value},function(data) {

    $("#results").html(data);

    });

    }

    </script>

    </head>

    <body>

    <input type="text" onkeyup="getStates(this.vaule)">

    <br>

    <div id="results"></div>

    </body>

    </html>

    GETSATES.PHP

    <?php

    mysql_connect("XXX", "XXX", "XXX") or die ('Error connecting to mysql');

    mysql_select_db("XXX") or die(mysql_error());

    $partialStates = $POST['partialState'];

    echo $partialStates;

    echo "<br>";

    $query = "SELECT * FROM posts WHERE content like '%$partialStates%'";

    $states = mysql_query($query);

    while($state = mysql_fetch_array($states)) {

    echo $state['content'];

    echo "<br>";

    }

    1 AnswerProgramming & Design1 decade ago
  • Port Forwarding - ho do you do it?

    I am trying to host a server and I am having some major dificulties...

    I am trying to host it connected to a linksys router (ip: 192.168.1.1) which is connected to a DSL modem (ip: 192.168.2.2).

    I can access the site successfully when on localhost, but when I type in my URL it gives me a login page.Here it it: http://tmobileweb.dyndns.org/

    So essentially what I have now is the DSL modem DMZ to the linksys router. I have the correct port fowarding (80, 8080, adn 8000).

    Please help!

    4 AnswersComputer Networking1 decade ago
  • Paid Cydia app on my repo?

    Okay,

    I have and app that no one wants to host as a paid app but I want to get money from it.

    Is it possible to host paid apps on my repo I made? Or can only a select few hosts do paid apps? Because the only type I know how to host now is free ones on my repo, that is.

    If it's not possible, I am open to any other ideas on getting this thing sold. I really don't want to do ads - it makes it cluttered and gets annoying after awhile.

    Thanks!

    1 AnswerSoftware1 decade ago
  • WAMP and Apache not working.?

    I currently have wamp and apache installed on my computer (windows xp).

    If I go to localhost or my ip address, it loads up just fine on my computer but when I type in my ip address on another computer, it just gives me a loading screen for a long time.

    I am new, and have no idea what I did wrong or what needs to be edited. Can anyone give me some advice?

    THANKS!

    2 AnswersComputer Networking1 decade ago
  • iPhone frozen... Help!?

    Okay, I didn't know where to put the on the website. So I just posted it here.

    I have a jailbroken iPhone and I was removing something that I had installed in Cydia. It completely shut off. All I see it the apple symbol and the loading bar. It goes through cycles: just apple symbol, loading bar moves, loading bar freezes, white screen, and it starts all over again.

    I can't do anything about it. I've tried removing my sim, plugging into my wall charger, and plugging it into my computer. I cant restore it because it won't recognize it.

    It's a 3G if you needed to know. Please help! Thanks.

    3 AnswersCell Phones & Plans1 decade ago
  • What is the best method to remove scratches from a resistive touch screen cell phone?

    I take pretty good care of my cell phone. I have had it for about 6 months and have accumulated some small scratches - no biggie.

    This weekend a freak accident happened where my cell phone got scratched up really bad. Is there a way to make the scratches less obvious or make them vanish completely?

    Again, it's a SAMSUNG HIGHLIGHT and has a RESISTIVE TOUCH SCREEN phone.

    Thanks,

    Coulton

    PS: Here is a pic: http://dailybooth.com/helloimcoulton/6801996

    Though it didn't turn out that good, you can kinda see a few scratches... There are tons more than you see in the pictures. Thanks again for your help!

    3 AnswersCell Phones & Plans1 decade ago
  • Why aren't Cron Jobs and MySQL database working together?

    I have a Cron jobs to check a database for information, then email the information.

    In the database, I have many field. One of those is a "to" field.

    I run the code manually, and I get the email with the correct information from the database. However, when it runs through Cron jobs, I get the email but the info from the database does not show up.

    To view the script, please visit this page: http://adamhouston.org/send_email/display.html

    If you need any other information, I will be willing to provide it for you.

    Thanks so much in advance,

    Coulton

    1 AnswerProgramming & Design1 decade ago
  • Crontab email alerts?

    I am trying to send an certain email with cron jobs once a day. I created a script (PHP) that once opened, it sends an email to my email. I set it up with CronTab and I DID NOT get the email.

    I have the Cron Email and I got this:

    /home/yourwayw/www/insanestream.com/alerts/site.php: line 1: ?php: No such file or directory

    /home/yourwayw/www/insanestream.com/alerts/site.php: line 3: syntax error near unexpected token `"coultonvento@gmail.com",'

    /home/yourwayw/www/insanestream.com/alerts/site.php: line 3: `mail("coultonvento@gmail.com", "Subjecctgoeshere", "MESSAGE", "person@gmail.com");'

    How can I get this to work?

    What am I doing wrong?

    2 AnswersProgramming & Design1 decade ago
  • Voice Changing Software for Mac?

    Is there any real time voice changing software for a mac. I have seen plenty of free software downloads for PC. Like this one. http://www.screamingbee.com/product/MorphVOXJunior... . What I am really trying to do is change my voice when video chatting. Where can I find software like that for mac?

    2 AnswersSoftware1 decade ago