Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. header('Content-Type: text/html; charset=utf-8');
  2. get_header();
  3.     $all_sections = mysql_query("SELECT * FROM scms_sections WHERE active = 1 ORDER BY 'order' ") or die(mysql_error());
  4.     while ($section = mysql_fetch_assoc($all_sections)) {
  5.         print_r($section);
  6.         echo $section['title']; #Hier ist ein ü drin!
  7.         #load_template_from_folder('styles');
  8.     }
  9. get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement