Recent content by Baseball Freak

  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"...
Back
Top