Web Designer, Internet radio DJ & sometimes i fight giraffes at the zoo.
9 Posted Topics
Re: most likely cause is that the links in your iframe have a `target="_top"` attribute | |
Re: on your submission script, instead of if ($result) { // If it ran OK. header ("location: customer_device_print.html.php"); exit(); you could use if($result) { echo '<script type="text/javascript"> window.location = "customer_device_print.html.php?cell='.$cell; echo '" </script>'; } and then on customer_device_print.html.php use `$cell = $_GET['cell'];` then you can then run a mysql query to … | |
Re: Mp4 is the web standard these days as it is cross browser and cross platform compatible . And for embedding mp4 videos you can use jwplayer (which can be downloaded for free from jwplayer.com and uploaded to your website ) which again will work across all browsers and operating systems … | |
Hi, i'm having some trouble with my MySQL server where i can't log in or connect to it from the terminal , phpmyadmin or my server control panel. the password is correct , i have reset it a number of times but still get the same message: ERROR 1045 (28000): … | |
Re: this should work <?php if($_GET['id']) { $id = $_GET['id']; $data = mysql_query("SELECT * FROM table_name WHERE id='$id' ") or die(mysql_error()); while($info = mysql_fetch_array( $data )) { ?> <select onChange="if(this.selectedIndex!=0) self.location=this.options[this.selectedIndex].value" class="search-select" > <option value="?id=<?php print "".$info['id'] .""; ?>" ><?php print "".$info['columb_name'] .""; ?> </select> <?php print "".$info['id'] .""; ?> - … | |
Re: i did this by removing the #masthead attribute from <header> and placing it in a <div> instead , and wraping <div id="masthead"> with <div id="page"> , that way your nav is still wrapped in <head> but isn't contained in #masthead or #page. HTML <body> <header> <div id="page"> <div id="masthead"> <hgroup> … | |
Re: use position:fixed; in the css element and it will stay put when scrolling. | |
Re: i created a performer management system for a production company a while ago, heres an example of sending the form data to a mysql database. this is a file called new_performer.php , if you take a look through the code you should be able to work out whats happening. as … |
The End.