I want to create another field into an existing MYSQL database
This new field will be the addition of 2 existing fields
the field id and the field url
in idfield, i have a number = row number ( 1,2,3,4,5,6, ... )
in the url field, I have URL in plain text ( [url]http://.../page.php?id=[/url] )
What I'm trying to do is to create a new field that takes the data from the ID field and ADD IT to the data from the URL field.
So I will found in the NEWFIELD, some plain text like :
example, [url]http://.../page.php?id=1[/url] ( if id=1 )
I need to write the command to:
Create a new field (from the addition of field url + field id )
I use phpmyadmin to edit my database
Can someone help me with that problem?