Ask a Question related to Dreamweaver AppDev, Design and Development.
-
bethan81 #1
php variables in html
I am looking for a way to use php variables in html tags, the specific problem
i am looking at involves placing a variable in an image placeholder, which
holds the address from the database of the image i am trying to use.
<td><img name="viewmemberimage" src='what the hell do i put in here?'
width="50" height="46" alt=""></td>
these are some of the details from the code:
memberpicture=column in database which stores the file name of the image
$uploaddir= variable used to store the rest of the address
any help would be great....
Bethan
bethan81 Guest
-
Storing Variables in html???
I would like build an html page structure and have a Flash navigation. So for reasons of easier updating and building, I would like to have only... -
passing variables to new HTML page
Im using a javascript search system combined with flash This actionscript is used in the button on (release, keyPress "<Enter>")... -
Variables in html and user creation
im literate in html and im still wondering how a site like that neo pets game http://www.neopets.com has users create there own names, be able to... -
Help - PHP Variables Used in HTML <IMG Tag
I'm trying to dynamically load a .jpg image into a html form <Img tag using a PHP variable that holds the filename of the image but no image is... -
gareth #2
Re: php variables in html
<?php $full_path = $uploaddir . $row_RecordName['memberpicture']; ?>
<td><img name="viewmemberimage" src='<?php echo $full_path; ?>' width="50"
height="46" alt=""></td>
--
Gareth - TMM Dreamweaver
[url]http://www.dreamweavermxsupport.com/[/url]
[url]http://www.garethdp.com/[/url]
PHP Login Suite V2 - 34 Server Behaviors to build a complete Login system.
[url]http://www.phploginsuite.co.uk/[/url]
Co-Author: Dreamweaver MX: Instant Troubleshooter - Apress
Co-Author: Practical Intranet Development - Apress
Co-Author: Dreamweaver MX: Advanced PHP Web Development - Apress
Co-Author: Dreamweaver MX: PHP Web Development - Wrox
gareth Guest



Reply With Quote

