Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

Go Back  dBforums > Data Access, Manipulation & Batch Languages > PHP > the tag <img src= ""> in incfile

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-18-04, 17:52
faamugol faamugol is offline
Registered User
 
Join Date: Mar 2004
Posts: 55
the tag <img src= ""> in incfile

Hi,

I want know if it is possible to include

the tag <img src= "photo.jpeg"> in a include file in PHP

I have tried the following but I dont get my picture on the page:

header.inc

<TR>
<TD align=middle><img src= "photo.jpeg"></TD>
<TD align=middle> &nbsp</TD>
<TD colspan=2 align="middle"><FONT face=Verdana
color=purple><STRONG><B>RECOGUI</B></STRONG></FONT></TD>
</TR>

index.php

<?php
........
include("header.inc")

.......
?>



thank you in advance for any idea.
Reply With Quote
  #2 (permalink)  
Old 10-21-04, 05:29
rhs98 rhs98 is offline
Moderator
 
Join Date: Feb 2002
Location: Hampshire, UK
Posts: 440
Change it to

PHP Code:
........
require(
"header.inc")
....... 

NB: Changing from include to require will change the type of error generated from a warning (which you may not see) to an actual error message (i.e. the program should crash if it can't include the "header.inc" file)...

If it crashes, it should say why (likely to be can't find the file), you can then correct the path.

If this doesn't help, post some more details + some more code please.
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On