My database is set up like this
article_id article_name article_seo
12 test a /test-a
I would like for the article_seo
to have the article id within it!
$articleseo=$article_id.'/'.$newurltitle.'.html'; // article_id is undefined
so when it is uploaded to the database it will look like this
article_id article_name article_seo
12 test a 12/test-a
So my question is what what the variable $article_id have to be in order to achieve this