Advertisement
Guest User

Zapisywanie do bazy

a guest
Nov 13th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. // Zapisujemy ustawienia
  2. function kolor_zapisz()
  3. {
  4. global $wpdb, $user_ID;
  5.  
  6. if (preg_match('&profile.php&', $_SERVER['REQUEST_URI'])) {
  7. $id = $user_ID;
  8. }
  9. elseif($_GET['user_id']) {
  10. $id = $_GET['user_id'];
  11. }
  12.  
  13. if($_POST['kolor']) { update_usermeta($id ,'kolor', $_POST['kolor']);  } else { update_usermeta($user_ID, 'kolor', ''); }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement