Search results

  1. espfutbol98

    Login page redirection with variables

    This tutorial will show how to protect a page by redirecting to a login page with a return url and if logging out, will show the username that you logged in with. The return url function is standard in ASP.Net but it took me a while to find it in php. This tutorial will not actually show the...
  2. espfutbol98

    Embed Mp3 Player - Deny download access

    You could use a simple javascript to encrypt the source but people can still eventually find out what it says with programs like firebug and the built in function in Google Chrome.
  3. espfutbol98

    Javascript help

    Thanks for the advice. I've been to the asp.net site and have a bunch of e-books on asp.net with visual web developer but I find PHP much more natural and I've tried to install ASP.Net on my laptop (aka server) but it didn't work out.
  4. espfutbol98

    Javascript help

    Thanks:biggrin:. I got the player to show and the playlist to load but its not playing. I guess I'll just mess with the xml some. Here's what I have so far: <playlist version="1"> <trackList> <track> <title> - Mathematics </title> <creator>14.05.09.</creator> <location>...
  5. espfutbol98

    Javascript help

    Is there a way to pass all the same variables in an html embedded object to get the same result?
  6. espfutbol98

    Javascript help

    I'm kinda familiar with PHP and I want to learn ASP.NET. Really all I know is securing stuff and setting up my own web server out of Vista. I just started learning about coding and I'm only 15 so I really don't know much. I learn mostly by reading other sites' code.
  7. espfutbol98

    Javascript help

    I fixed the typo but I'm not really familiar with Javascript and don't know exactly what to do now. I am still getting the same error from the error console.
  8. espfutbol98

    Javascript help

    It's the same as above but here it is http://podaci.selfip.org/player.html
  9. espfutbol98

    Javascript help

    Here's the rest of the source: uaHas: function(ft) { var _u = UFO.ua; switch(ft) { case "w3cdom": return (typeof document.getElementById != "undefined" && typeof document.getElementsByTagName != "undefined" && (typeof document.createElement !=...
  10. espfutbol98

    Javascript help

    On my page, I refrenced every script and link throught the page and I am still puzzled. I still get a blank page even with this new one I made. <html> <head> <script type="text/javascript"> var UFO = { req: ["movie", "width", "height", "majorversion", "build"], opt: ["play", "loop"...
  11. espfutbol98

    Update Entire SQL Table

    I found one slight problem easily fixed. It was turning $_POST['description'] into an array that didn't have to be. Here is the final code: <?php $record = $_GET["rid"]; $db_server = "localhost"; $db_name = "database"; $db_user = "username"; $db_pass = "password"; $con1 =...
  12. espfutbol98

    Javascript help

    I am trying to get this little javascript to show an embedded flash movie but I can't get it to work for some reason. I have all of the specific files listed. I have seen it implemented here but I can't get it to show up on my html page. <script type="text/javascript"> <!-- var FO = {...
  13. espfutbol98

    Update Entire SQL Table

    I tried the source above by xav0989 and the page shows all of the data from the sql database but when I click Change, I am redirected but the data is not updated. I am sure all of the sql corresponds to the sql database.
  14. espfutbol98

    Update Entire SQL Table

    I have gotten close to finishing but when I get to update.php?rid=<WHATEVER> and click the update button, nothing happens. The information from the database goes in the inputs but it cant update: <?php $record = $_GET["rid"]; $db_server = "localhost"; $db_name = "database"; $db_user =...
  15. espfutbol98

    Update Entire SQL Table

    Update SQL Rows via PHP I was wondering how would I echo an entire table with a link on each row to the update page specifically for that row. I can already create a new row, view an entire table, but I have no clue how to do this. If you need any source code, just ask. Thanks for the help.
  16. espfutbol98

    Explain A Javasript

    Could someone please inform me on how this script I found works. I found it on a login page that pops-up and once authenticated, closes and refreshes the page. I'm not sure exactly what it says or how to change it to not use ?sec or &sec but rather just normal page names. <script...
  17. espfutbol98

    PHP MySQL update

    I finally got it to work! I just changed "AND" to ",". Here is the final settings.php code. <?php session_start(); if (!isset($_SESSION['user'])) { header("Location: login.php"); } include ('dbc.php'); if ($_POST['Submit']=='Change') { $rsPwd = mysql_query("select user_pwd...
  18. espfutbol98

    PHP MySQL update

    I have changed the script a little and now I am not getting any messages. When I click update, the form empties and in the database; user_email is set to 0 and the country remains the same. I have decided to add all of the relavent source code this time. dbc.php <?php $dbname = '****'...
  19. espfutbol98

    i really need help?

    I just use explorer with ftp://[username]:[password]@[yourdomain].x10hosting.com There's an article about using ftp with dreamweaver at: http://forums.x10hosting.com/tutorials/87716-how-upload-dreamweaver-files-using-ftp.html
Top