Jump to content

[SOLVED] rating script - passing id issue


avillanu

Recommended Posts

I'd like to have a rating system for my CMS. I know how I'll set up the database. I'm just running into a very small problem regarding the form:

<form method="post" action="rate.php">
<select name="rating">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<input type="submit" name="submit" value="Rate" />
</form>

 

The small problem is I don't know how to pass the content id (a number) to the form. How would I do this?

Link to comment
https://forums.phpfreaks.com/topic/66373-solved-rating-script-passing-id-issue/
Share on other sites

You need to add $id = $_GET['id'] for this instance. You'll want to "clean" it by making it

$id = intval($_GET['id']); (if you're only ever expecting a number.

Otherwise users can inject SQL (google: SQL injection) or XSS attacks.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.