6,558 Topics

Member Avatar for
Member Avatar for bestgraphicsbd

I've tried inserting an Excel spreadsheet to be read on the web, only read not written to. I've saved the Excel Spreadhseet as a web page and used the following in my code: <a href="spreadhseetname.html">Click here for Excel Spreadsheet</a> I can open in with Internet Explorer but when I upload …

Member Avatar for Usman-Zulifiqar
0
210
Member Avatar for esoftwall

how to open the multi content pop up's ,below code showing button1 content only when i cleick the second button top <div class="buttons"> <button type="button" id="btnShowSimple" value="Email" class="positive" > <img src="../css/bmail.png" alt="email"/> Email </button> <button type="button" id="btnShowShare" value="Share" class="positive" > <img src="../css/share.jpg" alt="Share"/> Share </button> </div> <div id="model"> <div id="output"></div> …

Member Avatar for moyk
0
500
Member Avatar for Ari5555

I host a website on an intranet. The website is hosted on a Windows 7 Ultimate 64bit via IIS. The HTML5/CSS3 became corrupted in IE. On the computer itself the website does not display correctly in development or when I browse to its hosted version, but the other computers that …

Member Avatar for pixelsoul
0
152
Member Avatar for riahc3

Hey I tried to access a cookie that has a [object HTMLImageElement] but when I try to echo it, it simply prints that out: [object HTMLImageElement] I want it to display the picture. How can I do this? Thanks

Member Avatar for riahc3
0
4K
Member Avatar for Patiodude

I recently converted all my .html files to .php, and while the stylesheet they're linked to (which hasn't changed) works almost perfectly, the <h1> through <h6> tags (headings) don't work with the new .php files. The font appears the same size as the body, which is too small to be …

Member Avatar for almostbob
0
218
Member Avatar for pawan768

I want to use a php variable into HTML tag id . For e.g. <?php $temp='123'; ?> Now i want to use $temp as a ID in DIV say <div id="$temp"></div> How i'm able to do this .

Member Avatar for dcdruck
0
89
Member Avatar for newbie1234

I am writing html and css to design in php. But when i am opening in ie, chrome and firefox. every where its showing different. Means all dimension going to change. I am using % for body wrapper and em for fonts but its not working. Is here any help?? …

Member Avatar for vjcagay
0
116
Member Avatar for subtlehulk

Hello. I have a little problem with some work i've been given to study and i am meant to build a little bingo application. We have to modify our co-workers' code so that it fits out own little scenario. I've chosen to do a British Bingo card application and my …

Member Avatar for JorgeM
0
4K
Member Avatar for Vanquish39

Hey guys i have a problem and I'm starting to fall short of solutions. Here is the scenario. I created a student registration HTML file and a servlet to answer this file. The problem is the submit button doesn't work on the html form. I have tried dozens and dozens …

Member Avatar for komalikaa
0
448
Member Avatar for GeekTool

Hello all you guys, First of all, i am done with Html and CSS as i said in the article title. Now i want to learn a language like PHP, Coldfusion, .Net etc. to make dynamic web sites. According to what i have heard from my friends, php is the …

Member Avatar for veedeoo
0
178
Member Avatar for dtkhshi

I have written a web app with a few JSP pages and Java servlets running on a Tomcat server. The app needs to be able to send location updates to a Servlet every x seconds. I have found the html5 watchPosition(sucess_callback, error_callback) function to get the location updates from the …

0
82
Member Avatar for hwoarang69

for some reason when i hit submit button it doesnt go run php code. i have this form below. when i hit sumbit button it should start the php code. <form action="" method="post"> <?php //print errors if(array_key_exists('reg_error', $_SESSION) && !empty($_SESSION['reg_error'])) { echo $_SESSION['reg_error']; unset($_SESSION['reg_error']); } ?> Firstname: <input class = …

Member Avatar for |-|x
0
1K
Member Avatar for sentongogray
Member Avatar for shadiadiph

I have this menu which works fine in firefox etc but just will not work in I.E 7 can anyone tell me why? [code] <html> <head> <title></title> <style type="text/css"> #mainmenu{ width: auto; height: 30px; } #mainmenu{ margin: 0px; padding: 0px; z-index: 1; } #mainmenu li{ float:left; position:relative; width: 140px; border: …

Member Avatar for jayesh123
0
270
Member Avatar for mariaceline_21

error Please select an imageError: Duplicate entry '' for key 'img' ` //file properties $file = $_FILES['image']['tmp_name']; if(!isset($file)) echo "Please select an image"; else { $image = addslashes(file_get_contents($_FILES['image']['tmp_name'])); $image_name = addslashes($_FILES['image']['img']); $image_size = getimagesize($_FILES['image']['tmp_name']); if($image_size==FALSE) echo "That's not an image."; else { { if(!$insert = msql_query("INSERT INTO shop (id, img, …

Member Avatar for vibhaJ
0
151
Member Avatar for rogerg

hello, I use a script I found on this site [Click Here](http://www.html-form-guide.com). I don't think the htmlentities check work and I don't know what's wrong. the .php file for the registration starts with <?PHP require_once("./include/membersite_config.php"); if(isset($_POST['submitted'])) { if($fgmembersite->RegisterUser()) { $fgmembersite->RedirectToURL("thank-you.php"); } } ?> and the user registration form starts with …

Member Avatar for rogerg
0
199
Member Avatar for sara5454

this is my code (html) i dont know how can i open the page in div , i try with iframe but is failed :/ plz help me! <html> <head> <title>Template</title> <script type="text/javascript" src="script.js"></script> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> </head> <body> <div class="PageBackgroundGradient"></div> <div class="Main"> <div class="Sheet"> <div class="Sheet-tl"></div> …

Member Avatar for almostbob
0
383
Member Avatar for geneh23

Hey everyone, I haven't been on here in a while and I have probably a stupid error somewhere but anyway, I have three files: one is a php(header) file and the other is a css file linked into the index page. I think I've coded the php and I'm pretty …

Member Avatar for geneh23
0
137
Member Avatar for dinok

Hello people of daniweb. I'm new here :) Anyways, I have issue with my css. I have top picture which is exaclty of 570px height, and it has some gradient in it so it is not repeatable. I have middle (or center) picture which is 1 px height and same …

Member Avatar for dinok
0
186
Member Avatar for VenusCrystal

Hi, I have to add css attribute at runtime using jquery.. For example i have the following code: <table width='100%' cellpadding='0' cellspacing='0' > <tr> <td valign='top' width='70%'><span class='header-text'> </span> </td> </tr> </table> I need to add css style to the table. I can access span element of td within table. …

Member Avatar for VenusCrystal
0
171
Member Avatar for riahc3

Hey I tried to access a cookie that has a [object HTMLImageElement] but I found out that cookies have a limit on size so Im trying to do this with pure Javascript I can store the value of what I want in a hidden div and now I want to …

Member Avatar for riahc3
0
168
Member Avatar for Shougat

I want to use while loop in html. I have the following php code. But it does not work. How can i solve this problem? Please any one help me. while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['ID'] . "</td>"; echo "<td>"; echo "<input name="txtf" type="text">"; echo "</td>"; …

Member Avatar for broj1
0
428
Member Avatar for spudly1987

<html> <script type="text/javascript"> function show_hide(o){ if(o.className == "hidden"){ document.getElementById('menu').style.display = 'block'; o.className = "show"; }else if(o.className == "show"){ document.getElementById('menu').style.display = 'none'; o.className = "hidden"; } } </script> <a href="#" class="hidden" onclick="show_hide(this)">Bryn Blayne</a> <div id="menu" style="display: none;"> <ul> <li><a href="file:///C:/Users/Vince/Pictures/kinklive%20fan/brynabout.htm" TARGET="MAIN">About Me</a></li> <li><a href="file:///C:/Users/Vince/Pictures/kinklive%20fan/bryncontact.htm" TARGET="MAIN">Contact</a></li> <li><a href="file:///C:/Users/Vince/Pictures/kinklive%20fan/brynschedule.htm" TARGET="MAIN">Schedule</a></li> <li>Pictures</li> <li>Videos</li> </ul> …

Member Avatar for spudly1987
0
123
Member Avatar for hwoarang69

i have a form in html. when user hit sumbit. i want to run top php code. when i run it it give me 2 errors Notice: Undefined variable: _SESSION in C:\xampp\htdocs\login_test\register.php on line 134 Warning: array_key_exists() expects parameter 2 to be array, null given in C:\xampp\htdocs\login_test\register.php on line 134 …

Member Avatar for hwoarang69
0
317
Member Avatar for FireSBurnsmuP

Alright, I just started trying to do some CSS (I know, I have too much time on my hands) in order to make my own theme for firefox, so it matches my windows theme a little better. However, I really don't know what CSS is, what the general syntax is, …

Member Avatar for alikhanbaba
0
121
Member Avatar for Siberian

Hello, I have a HTML file, as well as I have an excellent program that can print anything to PDF. Although I have a HTML document with frames and I'd like to convert it to PDF but with the navigation links within the HTML transfer to the PDF. Does anyone …

Member Avatar for lokibl
0
270
Member Avatar for mariaceline_21

Notice: Undefined index: HTTP_REFERER in C:\xampp\htdocs\cart\order.php on line <?php define('INCLUDE_CHECK',1); require "connect.php"; if(!$_POST) { if($_SERVER['HTTP_REFERER']) header('Location : '.$_SERVER['HTTP_REFERER']); exit; } ?>

Member Avatar for mariaceline_21
0
228
Member Avatar for mariaceline_21

Notice: Undefined variable: _SESSION in C:\xampp\htdocs\dl\index.php on line 117 here;s the code: <?php if ($_SESSION['username']) echo "Hello ".$_SESSION['username']." ♔<a href='logout.php'> Logout </a> "; ?>

Member Avatar for vibhaJ
0
101
Member Avatar for mariaceline_21

Strict Standards: Only variables should be passed by reference in C:\xampp\htdocs\cart\ajax\tips.php on line 8

Member Avatar for mariaceline_21
0
233
Member Avatar for bo0ga

Hey guys. I am new at programming and would appreciate any help I can get. I want to make a program that reads the HTML code of a web page, and writes a specific line into a document. So for example, I want my code to read the source of …

Member Avatar for NormR1
0
207

The End.