Search results

  1. G

    windows movie maker help - Gif. Images?

    Hi everybody Basically the situation is that i have made a movie that incorporates 2 gif. type images. They play fine when in movie maker, but when i published it and played the file in windows media player, the Gif. images were gone and were instead replaced with nothing, just blackness until...
  2. G

    can nwn2 play on an intel mobile R graphic media accelerator 4500 mhd?

    I have a Tosibia laptop with this intergrated card in it. This computer plays Unreal Tournment 2004 flawessly, I was wondering it it would also play Neverwinter Nights 2. I am debating on getting either nwn or nwn 2 based on if my computer can run it.
  3. G

    What's the biggest crash in F1 history?

    Amount of cars involved.
  4. G

    HTML/PHP Form Processing Codes to save inputs to text file?

    I'd advise using MySQL database to store your data. If you really need it in a text file then your looking at having to, when your in the process of writing the data to the file, you have to store all previous data in a variable or array or something then write the new information then rewrite...
  5. G

    How do I define in CSS a web login form in PHP and move it around with CSS

    Here's a quick starter for you if you want to use it. This will give you a form with cascading styles and you'll be able to submit it and it will display the submitted information. It's just a quick template you can edit it as you need. HERE'S YOUR CSS <style type="text/css"> #form {...
  6. G

    I learned HTML,XHTML ,php,css on php I have an intermediat skill I need to improve how

    Javascript would be the next language up I'd presume, I went on to AJAX which I'm learning slowly now. You definitely need MySQL if you don't know that already. PHP and MySQL go together in so many ways, get on MySQL and then develop personal applications for yourself or friends in your free...
  7. G

    PHP array merge multiple duplicates?

    You can do this array_unique(), that will get rid of all duplicates but it won't add up the counts of each instance. That's a whole lot of stuff. There's probably an easier way to do that, how are you generating your code?
  8. G

    Create (2) PHP scripts…?

    You might want to look into MySQL.
  9. G

    how do i use a variable in html?

    You could do PHP. I don't think HTML has variables unless they've introduced something recently I'm unaware of. game.php?g=2222 <embed src="<?php echo $_GET['g']; ?>">
  10. G

    PHP looping the columns/fields and values/table dynamically.?

    Hey I'm trying to find a way to loop through the columns of my table and the values of my table dynamically. For instance here's my columns in the table: ID Name Age Gender and the values would be something relative to those fields. I don't want to have to do this. <th> Name </th> <th> Age...
Back
Top