penders

msg:4408311 | 7:59 pm on Jan 18, 2012 (gmt 0) |
| when users put this code into their sites this will display pagerank image |
| What makes you think this will display an image? You are referencing your PHP script in the src of a script element, so the source page is expecting JavaScript to be returned, not an image. Are you intending JavaScript to create an IMG element on the page? If you want an image to be displayed then may be you need to use an IMG element? But your PHP script doesn't appear to return anything? You also need to urlencode() the parameter value you are passing to your script.
|
hassanzobeen

msg:4408351 | 9:44 pm on Jan 18, 2012 (gmt 0) |
Yes it will display an image all the 11 images of page ranks e.g. 0 ,1, 2, 3, 4, 5, 6, 7, 8, 9, 10 are stored in the directory getPagerank($url) variable will get that number and shows the related image e.g. if the page rank is 2 then this will display make a image url i.e. [localhost...] and this image will display on their sites link with my website but i dont know how to make an javascript embed code for displaying and linking my image
|
Dijkgraaf

msg:4408433 | 3:30 am on Jan 19, 2012 (gmt 0) |
function writeimage(URLtoImage) { document.write("<img src='"+URLtoImage+"' />"); } get your PHP to write out the call to the function with the URL.
|
hassanzobeen

msg:4408637 | 6:17 pm on Jan 19, 2012 (gmt 0) |
not working please solveee
|
eelixduppy

msg:4408642 | 6:23 pm on Jan 19, 2012 (gmt 0) |
What's not working? What does your PHP script look like?
|
penders

msg:4408663 | 7:17 pm on Jan 19, 2012 (gmt 0) |
Are you returning the appropriate Content-Type header? If you are returning JavaScript, then this needs to be: header('Content-Type: text/javaScript'); But as eelixduppy states... what's not working?
|
hassanzobeen

msg:4408670 | 7:33 pm on Jan 19, 2012 (gmt 0) |
I also tried header('Content-Type: text/javaScript'); but nothing happens can any one provide me the complete coding for this page plz
|
Dijkgraaf

msg:4408688 | 8:31 pm on Jan 19, 2012 (gmt 0) |
Sorry, but that generally won't happen, please post the relevant snippet of code in a post, and tell us what the results are, then someone can help you diagnose the issue.
|
hassanzobeen

msg:4408715 | 9:14 pm on Jan 19, 2012 (gmt 0) |
COde: <?php include "pagerank.php"; $url = $_GET['info']; $image = "urdu/pr".getPagerank($url).".gif"; ?> URL: check.php?info=https://google.com Result: (it will display an page rank image which are already stored in folder html source code : <img src="urdu/pr9.gif"> but I need a javascript embed code for that so when ever users use this code on their website in the result that code will generate image of a page rank from my site I need an embed code like this <script type="text/javascript" src="http://mywebsite.com/check.php?info=websitename.com"></script>
|
hassanzobeen

msg:4409371 | 8:29 am on Jan 21, 2012 (gmt 0) |
plz helppp
|
|