Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7654323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:13:36+00:00 2026-05-31T12:13:36+00:00

I have the following code <input type=text id=chapter name=chapter value=’.$chapter_title.’/> I want to add

  • 0

I have the following code

<input type="text" id="chapter" name="chapter" value="'.$chapter_title.'"/>

I want to add stripslashes to the ‘.$chapter_title.’

Would I do something like this.

<input type="text" id="chapter" name="chapter" value="stripslashes'.$chapter_title.'"/>

How would I do this – not too sure where to put brackets etc.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T12:13:38+00:00Added an answer on May 31, 2026 at 12:13 pm

    Your question is much clearer when you post the whole line. The HTML is part of a string:

    $some_string = '<input type="text" id="chapter" name="chapter" value="'.$chapter_title.'"/>';
    

    It doesn’t really matter that it’s HTML for this question, so let’s make the example shorter:

    $some_string = 'abc ' . $chapter_title . ' !!!';
    

    That’s better. Without HTML’s double-quotes, it’s much clearer what’s going on. The string $some_string is the string 'abc ', concatenated to the PHP variable $chapter_title, concatenated to the string ' !!!'.

    In fact, any PHP expression will do, not just an expression. In this case you want to concatenate the value of stripslashes($chapter_title) rather than just $chapter_title itself, so:

    $some_string = 'abc ' . stripslashes($chapter_title) . ' !!!';
    

    Putting the HTML back in:

    $some_string = '<input type="text" id="chapter" name="chapter" value="' . stripslashes($chapter_title) . '"/>';
    

    There is plenty of great recommended reading on PHP. I suggest picking up a book with good reviews and going through it. Twice.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

currently I have following code: home.php <form name='myformname' id='myformid'> <input type='text' name='mytext1' value='abc'> <input
i have the following code : <input type=text value=<?php echo $_GET['msg']; ?>> This input
I have the following button: <input type=button count='<?php echo count($_SESSION['children']);?>' name=children class=add_child value=Add Another
I have the following code. I want to add two input fields together and
I have the following code: <form action= method=get onsubmit=doRequest($('word').value); $('word').value=''; return false;> <input type=text
I have the following page: <div style=display: inline> <input type=button id=txt value=Add TextBox style=
I have following HTML code. writer input field is text filed. but I want
I have the following HTML: <input type=email id=email> I want to type text into
I have code that looks like the following: <form id=MyForm name=MyForm method=post action=index.php> <input
I have the following code: $(input[id^='Order_'], input[id^='Default_']) .change(function (e) { var type = $(this).attr('id').split('_')[0];

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.