Jump to content

Q695

Members
  • Posts

    783
  • Joined

  • Last visited

Everything posted by Q695

  1. I'll build one on my own, and try to figure out the upload. I'm shocked that I can't do it VIA phpMyAdmin.
  2. I have a longblob storing an image now, but can't seem to insert a 17.7mb video into another longblob.
  3. I see no error in this, but is it running anything: On the old server: Warning: POST Content-Length of 18640412 bytes exceeds the limit of 8388608 bytes in Unknown on line 0
  4. I saw PHP myadmin had an update, so I checked the WAMP version of my testing server, and noticed that I'm running WAMP2.1 for testing my code, maybe that will solve the error still says: MySQL said: #2006 - MySQL server has gone away
  5. While loop with a database to pull the data from for the president of various years..
  6. Do a database check on the names, and there will be no problem.
  7. $_REQUEST is the stuff that does server requesting for data.
  8. When I delete the MySQL column for the video, and just upload the corresponding image it provides the following error on PHP MyAdmin: If someone wants to write it out by hand, this is the table description (for an image/video storage server): Item - INT, AI Image - Blob Video - Long Blob
  9. How do you fix the error then? I'm performing the upload localhost.
  10. Then Why does tiny MCE do it?
  11. ran tinyMCE on a form submitted it to the database pulled the data back to the form the HTML didn't validate properly when pulled from the database
  12. I'm trying to use phpMyAdmin to put a blob video into the database (for ease of handling), and for some reason when I put the video into the blob, and submit it, phpMyAdmin bounces back to the home page, and says "no change". Does anyone know what's going wrong in the file? I've done the same upload with the image preloader just fine, but when I go to do the video it errors.
  13. I'll be doing it for users within any given zip code, and calculating the distance to other users, so I don't think the tool is powerful enough. Anyone have advice?
  14. Is anyone aware of a good zip code distance calculator that uses the built in one on google maps, or something similar?
  15. How do you set up tiny MCE to output the code that way?
  16. Does anyone know what to do to fix this: <textarea name='_____'><p>______</p></textarea> The errors I'm getting is: missing </textarea> before <p> discarding unexpected </textarea>
  17. The values of the button should be: <input type='button' onclick='show_video(w3c, w3c.org)' value='Watch'> It really outputs: function show_video(, ) { document.getElementById('video').innerHTML='$'; document.getElementById('video').href='$'; document.getElementById('video').target='_blank'; } </script>
  18. Now I have this code: <script> <?php if ($_GET['item']){ echo " function show_video($video_name, $video_value) { document.getElementById('video').innerHTML='$video_name'; document.getElementById('video').href='$video_value'; document.getElementById('video').target='_blank'; } "; } ?> </script> errors as undefined php variables. After this I will rewrite it to swap an image (1st) with a video (2nd).
  19. I think I can figure it out now
  20. Yes, but it's going to its own page, but I want to trigger the video to load in the current page similar how a mssenger updates when you send an im to the server, but on the client side as a click..
  21. I have this line of code, but it's redirecting to another page, but I want it to replace the freeze frame of the video: document.write("<iframe width='420' height='315' src='//www.youtube.com/embed/...' frameborder='0' allowfullscreen></iframe>") What does the document.write need to say to swap, and not go to another page?
  22. Does anyone know how to do an upload video script with player similar to hot youtube has the upload/play ability?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.