Recent content by Willis

  1. W

    Can someone convert this swf file to a mpg or avi so I can upload it on youtube?

    If you have a minute, please convert this swf file for me to mpg or avi. Link below. Copy/paste it in the URL bar. http://www.mediafire.com/?j3r3drxf3nqg1ad NOTE: I'm at uni and our uni computers doesn't allow any installing of software but I need this file uploaded very soon so please help...
  2. W

    2006 Kawasaki Ninja ex250?

    Though a 250cc Ninja would be a great starter bike, my answers is no. I've ridden Kawasaki and mostly Ninja's for 10 years now. If you are looking for a starter bike, go to Craigslist and find a piece of sh*t bike because you will drop it and hopefully not but mostly crash it. I spent $850 on my...
  3. W

    How do I get to the TD Garden from Lexington, MI?

    Hi there I am a massive Boston Celtics fan who lives in Australia, and will be travelling to Lexington in mid January. What would be the easiest way to get to TD Garden (via public transport) for a Celtics game on a Friday night from Lexington? Many thanks Willis
  4. W

    [PHP] Can you apply two filters to a field?

    I'm using this: <?php $args = array( 'em' => array ( 'filter' => FILTER_SANITIZE_EMAIL, 'filter' => FILTER_VALIDATE_EMAIL, ), ); $inputs = filter_input_array(INPUT_POST, $args); ?> Does anyone know if this works? If it doesn't then what will (apart from applying the two filters seperately)? I...
  5. W

    Where can I find web hosting that supports the PHP Imagick class?

    need a UK based web host that has support for the Imagick Class as documented here: http://php.net/manual/en/class.imagick.php No web host I have contacted will confirm they have support for the class and I need it to enable my clients to upload and resize .tiff files to create thumbnails and...
  6. W

    Ford Focus Electric Problems?

    Hey, i have a ford focus. Recently, the car started to have a little flickering sound. Sounds like electric power sparkling. Then, random lights from the instrument panel started flashing for about 1/2 of a second. then it stops for a while and the flashes again. The speedometer, gauges...
  7. W

    How To Change The Sidekick I.D. open and shut noise?

    i need to change the sidekick id's open and shut noise
  8. W

    My tmobile g1 isn't receiving texts. But I can still send them and call.?

    Not receiving texts from anyone can send texts can send and receive calls. I am usin my g1 without the data plan. But it's been working fine since when I got it. It's not unlocked. I tested it to one of my friends phones and it will not recieve texts.
  9. W

    im trying to share files between my tmobile g1 and macbook computer thru...

    ...bluetooth. help? i have the devices paired but on my g1 it says "paired but not connected" and on my macbook when i select browse device in the bluetooth menu and select my phone, it says "this device does not have the necessary services". what do i do?
  10. W

    does anyone know how to copy and entire PHP webpage from OUTSIDE the website itself?

    The short answer is you can't because PHP is a server-side code and doesn't get sent to the browser, the php tells the server what to send to the browser. The long answer is you can by hacking the site which isn't really a nice thing to do so I won't go into details, plus lots of people might...
  11. W

    How to convert word to HTML CODE?

    What do you mean? You want it added to a website? Do as above but don't use <font> as it's been depreciated. Use <p>*text*</p> or <span>*text*</span> and use css to apply effects and formatting.
  12. W

    How to convert word to HTML CODE?

    What do you mean? You want it added to a website? Do as above but don't use <font> as it's been depreciated. Use <p>*text*</p> or <span>*text*</span> and use css to apply effects and formatting.
  13. W

    How to convert word to HTML CODE?

    What do you mean? You want it added to a website? Do as above but don't use <font> as it's been depreciated. Use <p>*text*</p> or <span>*text*</span> and use css to apply effects and formatting.
  14. W

    PHP Variable inside variable array?

    I think this might help: $animal = array (1 => "cat", 2 => array(1 => "dog", 2 = "rabbit")); the output would be: echo $animal['1'] ///= cat echo $animal['2']['1'] ///= dog echo $animal['2']['2'] ///= rabbit if you're used to using arrays this should make sense, if not then you should read...
  15. W

    Is there a way to remotely press the submit button on another website using php?

    For instance, if I have written a code that gathered myspace id's and saved them to a database, then displayed the links to the add pages on a page on my site (so that when you clicked them it brought you directly to their add page) would it be possible to use the fsock function to remotely...
Back
Top