
meomike2000
Members-
Posts
171 -
Joined
-
Last visited
Never
Everything posted by meomike2000
-
dont think that will work ether after looking at the page again try this <table width="900" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td valign="top" bgcolor="#EEEEEE"> <table width="165" border="0" cellspacing="0" cellpadding="0"> <tr> <td><img src="images/left_red.jpg" width="165" height="27" /><br> <?php include("include/links.php"); ?><br> </td> </tr> <tr> <td><img src="images/left_orange.jpg" width="165" height="29" /><br> <?php include("include/newsletter.php"); ?></td> </tr> </table> </td> </tr> </table> the only other think is if one of the included files has tables in them and there is a problem there........
-
as for the doctype try this one <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-
well unless you are just not showing it, the code below that you supplied starts two tables and only closed one... <table width="900" border="0" cellspacing="0" cellpadding="0" align="center"> <tr valign="top"> <td width="165" bgcolor="#EEEEEE"> <table width="165" border="0" cellspacing="0" cellpadding="0"> <tr> <td><img src="images/left_red.jpg" width="165" height="27" /></td> </tr> <tr> <td> <?php include("include/links.php"); ?><br></td> </tr> <tr> <td><img src="images/left_orange.jpg" width="165" height="29" /></td> </tr> <tr> <td> <?php include("include/newsletter.php"); ?></td> </tr> </table> try this one if that is the case... <table width="900" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td valign="top" width="165" bgcolor="#EEEEEE"> <table width="165" border="0" cellspacing="0" cellpadding="0"> <tr> <td><img src="images/left_red.jpg" width="165" height="27" /></td> </tr> <tr> <td> <?php include("include/links.php"); ?><br></td> </tr> <tr> <td><img src="images/left_orange.jpg" width="165" height="29" /></td> </tr> <tr> <td> <?php include("include/newsletter.php"); ?></td> </tr> </table> </td> </tr> </table>
-
not sure if images would work..... thanks for the advice though.......
-
well it is working in ie for me on vista...... as well as firefox on ubuntu.....
-
i want to use a select input for users to choose a color,,, but, i want to be able to do more than just write in the name of the color i would like to be able to actual put a color sample instead of the word or both.... any ideas on how to do somthing like that... i tried this, <option style="{background-color:#000000}" value="0" <?if ($bgcolor=="0") {echo 'selected="selected" '; } ?> >black</option> <option style="{background-color:#0000cd}" value="1" <?if ($bgcolor=="1") {echo 'selected="selected"'; } ?> >blue</option> and the word and color display but kinda weird, if i put the mouse over the color for selection that color goes away and the other color selection shows color.. if mouse over the black the blue shows blue,, if mouse over the blue,,, then shows the color black, how can i get it to show the color all the time, or is there a better way to allow color selection from color samples not words.. thanks mike.....
-
you should be able to use the session with out time out unless they take like 20 mins or more to fill it out,,, wouldnt understand why sesseions wouldnt at least last that long... mike....
-
have you tried calling mktime() but as mktime(value to get time from); worked for me to get time from a stored value;
-
when you post a new form i believe that POST[] values would be lost unless you pass them along with a hidden input type..... hope that helps mike.....
-
the update query in your case should look as follows and will work with the code you posted in the first post. $query = "update basket set qty = ' " . $qty . " ' where basket_id = ' " . $basket_id . " ' "; you dont have to space it all out though could be '".$qty."' like that as well. mike....
-
most likely the user would need to have permission to write to the folder that u want to create the directory in.... that username is most likely WWW-DATA....
-
found a fix with image resize..... thanks mike...
-
resizing the image like this <?php $img = $_GET['img']; $src_img = imagecreatefromjpeg('../'.$img); $srcsize = getimagesize('../'.$img); $dest_y = 800; $dest_x = (800 / $srcsize[1]) * $srcsize[0]; $dst_img = imagecreatetruecolor($dest_x, $dest_y); imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $dest_x, $dest_y, $srcsize[0], $srcsize[1]); header("content-type: image/jpeg"); imagejpeg($dst_img); imagedestroy($src_img); imagedestroy($dst_img); ?> then calling this script as my background image like this... <body background="location of resize file ?img='image to resize' " link="#ffffff" vlink="#ffffff" alink="#ffffff"> works great, just change the size value and you can properly adjust the size of an image it can be modified to work with other image types as well source = /www.earn-web-cash.com/2008/01/30/resize-images-php/ thanks mike...
-
how can i make an image stay fixed in the same spot in ie... fixed works well in firefox..... i just want some help making an image stay exactly where i put it on the page and not scroll with the rest of the page....... thanks mike
-
just use include 'filename'; you can add html to the php page with echo 'htmlcode here'; code code echo 'htmlcode here'; you can do that as well.
-
in my view a script is a script no matter how many parts it has......
-
well can u post the code here so we can see it like i have and maybe we can fix it.... please use code tags, the # above when you are posting.... thanks mike
-
not real sure,,, try taking the php close tag and then another start tag out and just let it all be one script like this <?php code code code ?> and not <?php code ?> <?php code ?> not sure that it makes a diff or not but there is no need to do it that way that i am aware of....
-
i do not want to stetch the image.... i simply want to let the browser resize the image to fit the height of the page.. the width can fall out to what it may, to wide or to narrow or just right,, like if i was to use <img src="some image" height="100%">... but i want to put that behind my page and have it in the center and not scroll be attached.....
-
anything that comes before the header.... please put between code tags on here..... put code here please.... the # up above where u type ur post is for code.... please remove any sensitive things from code before you copy and paste it here. like passwords, etc... thanks will help..
-
is there something that displays out on the page before this header,,, header("location: "); can not have no output before it....... question: can u show the entire page....
-
where can i find more information on how to place and image on my page, have the z-index to -1 so it is in the background under the text and have that image stay fixed in that possition on the page when the page scrolls... i had found a way to do this in a search on the web but now i can not find it again... it had something to do with a header-wrapper so that it would also work with ie..... any help would be great.....
-
you have html inside the php tag see this is what you have 1 <?php 2 <form method="post" action=" "> then you even started another <?php tag try this instead <?php echo ' <form method="post" action=" "> '; ?> when inside php you can use echo and then put your html inside quotes 'html here'; or you can do as you started and <?php php code here ?> html code here <?php more php here ?>
-
isnt there a way to use the <img> tag on the photo and set the height to 100% and let the width just be what it will be and then use a css wrapper to with a z-index of -1. i can use this idea to get the image as a large image in the background and it works, but how do i get that image to be fixed and center center... i dont know that much about css wrappers....... but i know that something like that is possible... thanks mike..
-
i dont want to ask here but i dont want to start another thread, is there away to resize these images when i upload them... i use a php script to upload them....... can i specify the height and have the width auto set to size of a jpg image on upload... like if the image was width 1000px and height of 500px and i want to change the height to 1000px the width would auto change to 2000px when saving or change these values after saving....... thanks mike....