What i'm trying to do:
{Category:Field:3}: {Review:Field:3}
I am using field:3 as a text input so i can enter a username.
{Category:Field:4}: {Review:Field:4}
Field:4 is a star rating.
I'm trying to get an if statement so if Review:Field:3 is "N/A" then it will display "No Additional Reviews" but if it is something else it will display everything {Category:Field:3}: {Review:Field:3} and {Category:Field:4}: {Review:Field:4}
I don't know what I'm doing, I tried searching the internet but it maybe a little over my head.
This is what I did but I sure it's completely wrong.
<?php
if ('{Review:Field:3}'=="N/A")
echo "NO REVIEW";
else
echo "{Category:Field:3}: {Review:Field:3}";
?>
Hope the post is clear enough.
Thanks
Also, if someone knows how to increase the number of stars to 10, I would be grateful as well.
Thanks again.