PHP Help with php and this part of the code ?

  • Thread starter Thread starter pattersonz
  • Start date Start date
  • Tags Tags
    Code Php
AI Thread Summary
The discussion centers around a request for assistance in modifying PHP code to create clickable links within a web layout. The user is struggling with managing multiple pages and seeks a solution after submitting the issue to a web design company without receiving feedback. The provided code includes image tags and links, but there are concerns about invalid HTML and incomplete code snippets. Participants emphasize the importance of sharing the full HTML output generated by the PHP code to clarify the issue and facilitate effective troubleshooting. The conversation highlights the need for detailed information to resolve coding problems efficiently.
pattersonz
Messages
1
Reaction score
0
Ok here is the code below, I need to know what I need to change in this code for it to be able to be a clickable link... I have many layouts and want to add more but with so many pages, its a bit hard to go through 49 pages just to add one page. I already submitted this problem to web design company but have yet to get any solution. So here is the code. I hope someone can help me!

<img src="[PLAIN][PLAIN]http://<?php [/PLAIN] [/PLAIN] [/PLAIN] [/PLAIN] echo $img_url . "/" . $imgpath . $file; ?>" alt="<?php echo $file; ?>" width="250" ><br>
<textarea name="textarea2" cols=23 rows=7 onClick="this.focus();this.sel...
<a href="[PLAIN][PLAIN]http://<?php [/PLAIN] [/PLAIN] [/PLAIN] [/PLAIN] echo $site_url; ?>" target="_blank" title="<?php echo $urlpath . $file; ?>">
<img src="[PLAIN][PLAIN]http://<?php [/PLAIN] [/PLAIN] [/PLAIN] [/PLAIN] echo $img_url . "/" . $imgpath . $file; ?>" border="0" alt="<?php echo $urlpath . $file; ?>"></a>
<?php if ($support_image != "") { ?>
<img src="[PLAIN][PLAIN]http://<?php [/PLAIN] [/PLAIN] [/PLAIN] [/PLAIN] echo $support_image; ?>" alt="Myspace Editors" style="position:absolute; left:0px; top: 0px;" border="0"></a>
<?php } ?>
<a href="[PLAIN][PLAIN]http://<?php [/PLAIN] [/PLAIN] [/PLAIN] [/PLAIN] echo $site_url; ?>/" target="_blank" title="Myspace Images">This image is from <?php echo $site_name; ?></a></center></textarea>
 
Last edited by a moderator:
Technology news on Phys.org
If possible post the html generated by your php page, or a link. I see multiple links, invalid HTML (i.e. this.sel...) and only a sub portion of the HTML document, etc.
All of this makes your question fairly ambiguous. Why don't you provide as much information as you can, it's very frustrating otherwise.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top