Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. $.ajax({
  2. type: "POST",
  3. url: "s.php",
  4. data: "uid="+uid,
  5. success: function(html) {
  6. $("#results").empty();
  7. $("#results").append(html);
  8. }
  9. }); }
  10.  
  11. for ($i = 0; $i < count($searchAlbum); $i++) {
  12. echo '<div id="cover"><form action=""><input type="hidden" id="uid" value="'.str_replace('https://example.com/', '', $searchAlbum[$i]->href).'"/><a href="#" onclick="openAlbum();"><img src="'.$searchAlbum[$i]->images[1]->url.'"/></a><br><br><span>'.$searchAlbum[$i]->name.'</span><input type="submit" style="position: absolute;;left: -99999px;" /></form></div>';
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement