Hi, My content div moves out to the left in I.E even though it is inside a centered container div. It’s fine in all other browsers. Please help? Here’s the site www.sugarrushdesign.com/test View full post on Webmaster-Talk.com
Hey I own this website watch the walking dead online. Just yesterday I noticed that the theme has some issues when it comes to IE. Actually, there is 1 issue: the text goes on unless I (or the users) use the "break-line" element. You can take a look at this page: http://watch-the-walking-dead-online…0/12/06/ts-19/ I. The synopsis [...]
Had a few problems with a new laptop (Acer Aspire 5732Z) getting an error saying that windows cant load the files due to some hardware that is not connected or faulty hardware. Eventually got it booted, reverted to factory settings, worked fine but after a week its saying the same… Rebooted and now i get [...]
Hi guys, Ive created a self cert for the moment ( to get it working ) Ive put the below in my virtualhost… <VirtualHost *> SSLEngine On SSLCertificateFile /etc/httpd/ssl/SITENAME.crt SSLCertificateKeyFile /etc/httpd/ssl/SITENAME.com.key .. .. .. Anyway, Apache restarts fine and can see it listening on 443. However whenever i try and browse i just keep getting [...]
Hi guys, I have a perl script that connects to cisco routers using the net::appliance::session module. It takes 3 arguments ( host , dbid, username ) It then connects to the host Reads the config from the DB based on the ID Adds the config to the router. This works FINE! if i call it [...]
Hi there, New to the forum (nice to meet you all). I’m not a heavy coder by any means, more of a design guy, however I can’t for the life of me fix the way the form is viewed in IE. In Chrome and Firefox it views correctly. Please view page in IE for reivew: [...]
http://newimagestudio.com/wedding_ph…op_02_hhl.html Here’s the webpage, it’s not my original design so working with someone else’s creation. The issue… trying to change the Nav Bar at the very top of the page, it was a single row of images with the links. Trying to implement a css drop down menu. There is a main CSS file that [...]
http://newimagestudio.com/wedding_ph…op_02_hhl.html Here’s the webpage, it’s not my original design so working with someone else’s creation. The issue… trying to change the Nav Bar at the very top of the page, it was a single row of images with the links. Trying to implement a css drop down menu. There is a main CSS file that [...]
hi, I’m stuck on my micropostcard script. I basically get two error messages: Notice: Undefined index: (does not like my postcard URL even though it is 100% correct!!!) Notice: Undefined variables (which i don’t understand) PHP Code: <?php// CHANGE PARAMETERS HERE BEGIN$senderName = ” Holidays From Home ”; // Eg.: John’s Postcards$senderEmail = ”chris01@voluntary.awardspace.co.uk”; // Eg.: john@postcard.com// Change only if you have problems with urls$postcardURL = ”http://”.$_SERVER[”voluntary.awardspace.co.uk”].$_SERVER[”Postcard.php”];//$postcardURL = ’http://www.voluntary.awardspace.co.uk/Postcard.php’;// CHANGE PARAMETERS HERE END$result = 0;$msg = ”";$msg1 = ”";$pic = ”";function displayPhotos(){ global $pic; $columns = 5; $act = 0; $act1 = 0; // Open the actual directory if($handle = opendir(“thumbs”)) { // Read all file from the actual directory while($file = readdir($handle)) { if(!is_dir($file)) { if(isset($pic[1])) { if($pic[1] == $act1){$sel = ”checked”;} else{$sel = ”unchecked”;} } if($act == 0){echo ”<tr>”;} echo ”<td align=’center’><img src=’thumbs/$file’ alt=’postcard’/><br/><input type=’radio’ name=’selimg’ value=’$file,$act1′ $sel/></td>”; $act++; $act1++; if($act == $columns){$act = 0;echo ”</tr>”;} } } echo ”</tr>”; } }?><!DOCTYPE html PUBLIC ”-//W3C//DTD XHTML 1.0 Transitional//EN” ”DTD/xhtml1-transitional.dtd”><html><head> <title>Micro Postcard</title> <link href= ”style/style.css” rel=”stylesheet” type=”text/css” /></head><body><div id=”main”><div class=”style1″ id=”caption”><div align=”left” class=”style1″></div></div> <?php //makes sure form is correctly filled in if(!empty($_POST[”submit”])) { if(empty($_POST[”selimg”])){$msg = ”Please select an image from above!”;$result = 3;} else{$pic = explode(“,”,$_POST[”selimg”]);} if(empty($_POST[”email”]) && empty($result)){$msg1 = ”You must enter an email address!”;$result = 3;} $secCode = empty($_POST[”secCode”]) ? ”" : strtolower($_POST[”secCode”]); if($secCode == $_SESSION[”securityCode”] && $result != 3) { $filename = date(“YmdGis”); $f = fopen(“messages/”.$filename.”.txt”,”w+”); fwrite($f,$pic[0].”\n”); fwrite($f,$_POST[’email’].”\n”); fwrite($f,stripslashes($_POST[”message”]).”\n”); fclose($f); // Compose the mail $from = ”From: $senderName <$senderEmail>\r\n”; $replay = ”Reply-To: $senderEmail\r\n”; $params = ”MIME-Version: 1.0\r\n”; $params .= ”Content-type: text/plain; charset=iso-8859-1\r\n”; $mailtext = ”You have just received a Virtual Postcard!\r\n\r\n You can pick up your postcard at the following web address:\r\n $postcardURL?show=$filename\r\n\r\n We hope you enjoy your postcard, and if you do, please take a moment to send a few yourself!\r\n\r\n Regards,\r\n Holidays From Home\r\n $postcardURL”; // Send email @mail($_POST[”email”],”You’ve received a postcard”,$mailtext,$from.$replay.$params); echo ”<center> Your postcard was sent successfully!<br /><br /> <img src=’images/$pic[0]’ alt=’postcard’ /><br /><br /><br />”.stripslashes($_POST[”message”]). ”</center>”; $result = 1; } else{if($result != 3){$result = 2;}} } if(!empty($_GET[”show”])) { $file = $_GET[”show”]; $content = file(“messages/$file.txt”); $pic = $content[0]; unset($content[0]); unset($content[1]); foreach($content as $value){$main .= $value;} echo ”<center> Your postcard!<br /><br /> <img src=’images/$pic’ alt=’postcard’ /><br /><br /><br />$main </center>”; } if((empty($result) || $result == 2 || $result == 3) && empty($_GET[”show”])) { echo ”<form action=’#' method=’post’> <table align=’center’>”; displayPhotos(); echo ”</table> <div style=’color:#f00;font-size:16px;’>$msg</div> <h2>Fill in the Form and then click on Send Card!!</h2> <table width=’100%’> <tr><td>Send to (email address):</td><td><div style=’color:#f00;font-size:16px;’>$msg1</div><input type=’text’ name=’email’ size=’30′ value=’”.$_POST[”email”].”‘ /></td></tr> <tr><td>Message:</td><td><textarea name=’message’ rows=’10′ cols=’40′>”.stripslashes($_POST[”message”]).”</textarea></td></tr> <tr><td colspan=’2′>”.($result == 2 ? ”<p style=’color:#f00;font-size:16px;’>Sorry the security code is invalid! Please try it again!</span></p>” : ” ”).”</tr> <tr> <td>Security code: <input class=’text’ name=’secCode’ type=’text’ size=’10′ /> </td><td><img src=’securityCode.php’ alt=’security code’ border=’1′ /></td> </tr> <tr><td colspan=’2′> </tr> <tr><td colspan=’2′ align=’left’><input type=’submit’ value=’Send card!’ name=’submit’/></td></tr> </table> </form>”; }?> Here is the link: http://voluntary.awardspace.co.uk/Postcard.php Any help would be much appreciated I am completely lost on this [...]
Hi, my database form doesn’t work, I get no errors, please if anyone could help me by checking to see if I have any errors I’d greatly appreciate it. Thanks. Derek Here is the code Code: <?php include("connect1.php"); if (!empty($_POST['email']) && !empty($_POST['password']) && !empty($_POST['confirm']) && !empty($_POST['submit'])) { // Declare Variables [...]