Skip to content

Instantly share code, notes, and snippets.

View gyprosetti's full-sized avatar

Gyp Rosetti gyprosetti

  • United Kingdom
View GitHub Profile
@gyprosetti
gyprosetti / ratings
Created January 16, 2015 12:43
php to store and display star ratings
<?php
session_start();
include ("connect.php");
require("checklogin.php");
$message = isset( $_GET['message'] )? $_GET['message']: "";
$formValue=array();
foreach ($_POST as $key => $value) {
$formValue[$key] = strip_tags($value);
$usercomments = nl2br($_POST['usercomments']);
$_SESSION['post_vars'][$key] = $value;