Search results

  1. F

    Need some help with PHP/MYSQL!!!?

    If you want it to happen dynamically you're going to need to know how the concept of AJAX works. Basically, a javascript function fires when the drop down is selected. This function calls a back end PHP script which will query the database and return it back to a javascript function that will...
  2. F

    I need some help with HTML on my blogger page?

    It's because your javascript timestamp variable is only the time in this format "11:52 AM" but you're trying to split it by a comma, which there isn't one, then you're trying to get a year, month, and day out of that but there isn't one. In order for your function to work correctly your...
  3. F

    What does it mean to be strong in flash?

    You'd have a real handle on the ActionScript language that PHP uses, and be able to create movies using just that. You be able to create full layouts using flash alone. You should know how to create apps that will upload files, submit forms, and load and play other forms of media like MP3s and...
  4. F

    Sending javascript variables to flash?

    When embedding your flash file using the <object> tag add another param called "FlashVars". It should look like this: <param name="FlashVars" value="variable=5"> And in your <embed> tag add another parameter called "FlashVars" with the same information like this: <embed...
  5. F

    What can be the downsides of enabling html on a forum?

    Ah, you leave yourself wide open for people to start attacking your other users. If you let me post html I could make a script that could steal session data from people's computers. That leaves them wide open to XSS attacks and CSRF attacks. If you're going to allow for HTML make sure that...
  6. F

    What can be the downsides of enabling html on a forum?

    Ah, you leave yourself wide open for people to start attacking your other users. If you let me post html I could make a script that could steal session data from people's computers. That leaves them wide open to XSS attacks and CSRF attacks. If you're going to allow for HTML make sure that...
  7. F

    I'm learning how to use mySQL database with PHP, is there a way to detect if the

    In your first query write: CREATE TABLE IF NOT EXISTS `table1`... Then write to that table in your second query. The second query will write to that table every time, but the first query will only create the table if it's not already there.
  8. F

    I'm learning how to use mySQL database with PHP, is there a way to detect if the

    In your first query write: CREATE TABLE IF NOT EXISTS `table1`... Then write to that table in your second query. The second query will write to that table every time, but the first query will only create the table if it's not already there.
Back
Top