Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. $wpdb->update("wp_table",
  2. array( 'content' => $html ),
  3. array( 'id' => 1 ),
  4. array( '%s' ),
  5. array( '%d' )
  6. );
  7.  
  8. $wpdb->update("wp_sn_cached_popular_display",
  9. array( 'content' => "hello" ),
  10. array( 'id' => 1 ),
  11. array( '%s' ),
  12. array( '%d' )
  13. );
  14.  
  15. $string = "hello";
  16.  
  17. $wpdb->update("wp_sn_cached_popular_display",
  18. array( 'content' => $string),
  19. array( 'id' => 1 ),
  20. array( '%s' ),
  21. array( '%d' )
  22. );
  23.  
  24. $html .= '<li>';
  25. $html .= '<div class="upcoming-left">';
  26. $html .= '<time datetime="' . $date . '" class="icon">';
  27. $html .= '<em>' . $date_day.'</em>';
  28. $html .= '<strong>' . $date_month . '</strong>';
  29. $html .= '<span>' . $date_num . '</span>';
  30. $html .= '</time>';
  31. $html .= '</div>';
  32. $html .= '<div class="upcoming-right">';
  33. $html .= '<span class="upcoming-title"><a href="' . $upcoming_link . '">' . $upcoming_title . '</a></span>';
  34. $html .= '<span class="upcoming-desc">' . $upcoming_desc . '</span>';
  35. $html .= '<div class="clear:both;"></div>';
  36. $html .= '</div>';
  37. $html .= '</li>';
  38. //...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement