How to convert input text to image?

fdfdfd

I've created a rating star system that allows user to rate 1-5. How do I change the numbers 1-5 to stars?

These are the codes below that show the numbers for the user to rate.

 <?php foreach(range(1,5)as $rating):?>            
 <a href="rate.php?article= <?php echo $article->id; ?> &rating= <?php echo $rating ; ?> "> 
 <?php echo $rating; ?> </a>
 <?php endforeach;?>

Are there any ways I can convert them to an image or do I have to redo my code?

user3119231

Yeah for sure.

 <?php foreach(range(1,5)as $rating):?>            
 <a href="rate.php?article= <?php echo $article->id; ?> &rating= <?php echo $rating ; ?> "> 
 <?php echo '<img src="images/rating_'.$rating.'.png">'; ?> </a>
 <?php endforeach;?>

Now simply create the folder images and insert rating_1.png, rating_2.png and so on.

BTW: Maybe it is easier and better for you when you use it in this way (only to show):

 <?php
      $bla = $article->id;    
 foreach(range(1,5)as $rating){        
 echo('
      <a href="rate.php?article='.$bla.'&rating='.$rating.'">
      <img src="images/rating_'.$rating.'.png">
      </a>
 ');
 }
 ?>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to convert a UIView to an image

From Dev

Convert text content to Image

From Dev

How to convert a text input form to html in rails?

From Dev

How to convert text to Image on iOS?

From Dev

Overlap "input text" over a image

From Dev

How to display more than one image in an <input type="text">

From Dev

How to programmatically read and convert email in an image to text?

From Dev

How to convert rich text into an image using PHP?

From Dev

Javascript - How to convert text into image

From Dev

how to convert mat to image

From Dev

How to convert text data into an Image?

From Dev

how to convert text input to java.time.LocalDateTime?

From Dev

How to convert input type

From Dev

How to convert all text in PDF to image

From Dev

Using an image as an input text

From Dev

Change the text size of input text form with image

From Dev

how to convert form text input to ASCII in Javascript?

From Dev

convert blob text to image and image to text

From Dev

How to display more than one image in an <input type="text">

From Dev

how to convert text to image in kinetic js version 5.1.0

From Dev

How to embed input text boxes on top of an image in bootstrap?

From Dev

How to programmatically read and convert email in an image to text?

From Dev

How to convert rich text into an image using PHP?

From Dev

How to define the input image format for imagemagick convert?

From Dev

Javascript - How to convert text into image

From Dev

How to convert text to an image?

From Dev

How to convert text to image in R other than texplot?

From Dev

how to place text over an <input type = "image" /> element?

From Dev

How to convert input field type="password" to type="text" in angular?

Related Related

HotTag

Archive