Hi All,
I'm sure this is a simple problem but I would appreciate any help. My site currently has a simple php form people use to post directly onto the site http://tobeperfectlyhonest.com/?page_id=3
The form works very well, but due to the formatting of my site, I need to have the title of the post prefaced by the words "To be perfectly honest." How do I accomplish this?
Thanks!
How to post the word "title" with a posts's title
Moderator: General Moderators
Re: How to post the word "title" with a posts's title
You mean when you are displaying what someone has posted on to the screen?
Erm, you can either just hard code it in the way you have on those pages, or when you save what they have posted, you can prefix it to the user's input before saving it.
Very simple, and not really much of a question, unless I am misunderstanding you?
Erm, you can either just hard code it in the way you have on those pages, or when you save what they have posted, you can prefix it to the user's input before saving it.
Very simple, and not really much of a question, unless I am misunderstanding you?
Re: How to post the word "title" with a posts's title
How would I prefix it into the user's input? Thanks!
Re: How to post the word "title" with a posts's title
Code: Select all
$content_title2 = "To be perfectly honest" . $content_title;Re: How to post the word "title" with a posts's title
Thank you so much!