Search results

  1. B

    How does a Yamaha YFZ 450 compare to a Polaris Outlaw 500?

    I might be getting a YFZ 450 in a few weeks. My friend has an Outlaw 500. Just wondering how the compare.
  2. B

    iPhone or Droid for Verizon?

    I have an upgrade coming up for my phones. I am not paying any more than I already do with my current plan. I have an EnV Touch, Unlimited data, minutes, and messaging. I think for the Droids you have to pay extra for their app store, but not the iPhone. ( Correct me if I'm wrong) But is the new...
  3. B

    Will the Verizon iPhone only require a Data Plan?

    I'm planning on getting and iPhone on Verizon in the next few months, but I was wondering if you would have to pay for anything besides the Data Plan. I have lots of minutes each month (I forget how much), I have unlimited Texting and an Unlimited Data Plan. Is there anything else other than...
  4. B

    If the iPhone comes to Verizon, what all extra will have to pay for monthly?

    I already have unlimited texting and calling and data (Message data and Internet) So what all extra besides that will there be a monthly fee for?
  5. B

    How Can I Get this PHP Script to Echo Back the Result?

    I am using this script to let users encrypt their password on their computers in a file. (Users will run this script from their computer) My problem is that I cannot figure out how to get the encrypted password to echo back to the users. How can I do this? This is the script...
  6. B

    How Can I Run 2 Continuous Loops in One PHP Script?

    So I have one file called functions.php with all my functions in it. The function I am trying to run has a while(true){ } in it. I need to run this function with 2 different users in 1 script. (So pretty much running 2 of this function at the same time.) Is this possible? If not, how else...
  7. B

    If I Enable Remote Management, will anything happen to the Internet?

    Like, will people from my network and stuff connected to my router still be able to access the internet? Also, I have a SMC router.
  8. B

    PHP: Regain a variable outside of an if statement?

    I have a script that sorta goes like this: ~~~~~~~~~~ if (blah blah) { if (blah) { $a = 1; if (blah) { $a++; // Do stuff here } } $Class->someFunction($a); } ~~~~~~~~~~ The problem is that when the scripts comes to the point to...
  9. B

    PHP | Help With Doing Stuff with INI File?

    I have an INI File and a PHP file. INI File is set of like this (Made with random stuff): [100] name = "Bob" I have this in PHP: $Variable = trim(fgets(STDIN)); Say the person enter Bob. How can I get PHP to use the .ini file to get the ID (100) of that name? (Code please? Not just an...
  10. B

    PHP | Help With Doing Stuff with INI File?

    I have an INI File and a PHP file. INI File is set of like this (Made with random stuff): [100] name = "Bob" I have this in PHP: $Variable = trim(fgets(STDIN)); Say the person enter Bob. How can I get PHP to use the .ini file to get the ID (100) of that name? (Code please? Not just an...
  11. B

    PHP | function_exists | Can you have PHP check if a function exists in a different file?

    I have 2 file, tasks.php and script.php. tasks.php includes a whole bunch of functions for scripts that I write. script.php has an include to include tasks.php in it. I have a function in tasks.php called safety. Is it possible to have a function_exists thing in script.php?
  12. B

    PHP | Random Images Doesn't Work?

    I have this snippet of code that is supposed to display a random image each time: <?php $url = array('URL1', 'URL2', 'URL3', 'URL4'); $random = rand(1,count($url)); $imagepath = $url[$random]; $image = imagecreatefromgif($imagepath); header('Content-Type: image/gif'); imagegif($image)...
  13. B

    PHP | Random Images Doesn't Work?

    I have this snippet of code that is supposed to display a random image each time: <?php $url = array('URL1', 'URL2', 'URL3', 'URL4'); $random = rand(1,count($url)); $imagepath = $url[$random]; $image = imagecreatefromgif($imagepath); header('Content-Type: image/gif'); imagegif($image)...
  14. B

    HTML | Keep Background Color Page to Page using PHP?

    Is there a way to use PHP's Function/whatever it is Session to make the following code keep the same color if I switch pages? <form action="#" onsubmit="return change_it();"> <select name="change_bg" id="change_bg"> <option selected="selected" value="0">Select Background</option> <option...
  15. B

    HTML - Javascript | Keep Colors Page to Page?

    So in my site, my I use index.php because I include head.htm and foot.htm and put my text into the index.php. In head.htm, I have this code that changes my background color: <form action="#" onsubmit="return change_it();"> <select name="change_bg" id="change_bg"> <option selected="selected"...
  16. B

    HTML Help | Make Sure People Have Filled Out the Whole Form?

    If I have a form in my HTML page, how can I make sure that everything on it is filled out. I want this so that it will not cause any errors in the PHP part. (I am using the POST method)
  17. B

    HTML | Another Option comes in when selected certain radio button?

    How can I make another option show up if another option is clicked? EX. I am on my website and I only have 1 question right now with 3 radio buttons to select. Say I click the second one, then some other question will pop up asking something else. But if I clicked option 1 on the first...
  18. B

    Having Serious Problems with PHP?

    Right now I have this little part on my PHP script: fwrite(STDOUT, "\nWould you like to choose your favorite number? (Yes/No):\n"); $Answer = trim(fgets(STDIN)); if ($Answer == "Yes") { fwrite(STDOUT, "\nWhat number do you like?(1-50000)\n"); $Number = trim(fgets(STDIN)); echo"\nAttempting to...
  19. B

    PHP Help | Number Through Another Number (Read inside for more Information)?

    So I have my PHP script that does this: $a = trim(fgets(STDIN)); if ($a > 1 && $a < 5){ // Does my stuff here } How can I make this so that it will get, say 1 - infinity?
  20. B

    PHP Help | fgets Get A Number Inbetween Two Other Numbers?

    How can I get PHP to recognize if I type in 5000 with fgets in command prompt? EX. In my PHP script it is set so if i type a number between 200 and 300 it will do the stuff I want it too. But it is also set so if I type 301 to 400 it will do something different then the stuff above.
Back
Top