Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
47% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
4
Posts with Downvotes
1
Downvoting Members
4
0 Endorsements
Ranked #3K
~8K People Reached
About Me

Web Designer, Internet radio DJ & sometimes i fight giraffes at the zoo.

Favorite Tags

9 Posted Topics

Member Avatar for Reverend Jim
Member Avatar for nouth

most likely cause is that the links in your iframe have a `target="_top"` attribute

Member Avatar for almostbob
0
126
Member Avatar for Ryan_11

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 …

Member Avatar for itisnot_me
0
287
Member Avatar for ggeoff

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 …

Member Avatar for ggeoff
0
274
Member Avatar for mattskills

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): …

Member Avatar for maba001
0
267
Member Avatar for My question

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'] .""; ?> - …

Member Avatar for fireburner29
0
423
Member Avatar for davecoventry

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> …

Member Avatar for davecoventry
0
396
Member Avatar for Chris_14
Member Avatar for getaprogrammer
1
352
Member Avatar for Mz. Jackee

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 …

Member Avatar for mattskills
0
177

The End.