Jump to content

[SOLVED] Variable with spaces


GrayFox12

Recommended Posts

Hi guys,

 

I wanting to put data from a textfield in a form into a variable which has spaces in it.

 

e.g.

 

$var = 'some data';

 

but all i get when echoing the variable is 'some'  when i want it to display 'some data' as one string.  I need this for inserting and retrieving from my mssql database.

 

Plz Help

Link to comment
Share on other sites

I might not fully understand your question, sorry, but here is my go at answering it:

 

Size? I think you mean maxlength? Size is the width of the input field. Maxlength is the number of characters allowed to be typed in it.

 

Try:

 

<form action='' method='post'>

<input type=text name=test maxlength=200>
<!-- feel free to change 200 I'm just giving an example -->

<input type=submit name=submit value=submit>

<!-- and then (if you want action='' on the same page then just do if(submit). -->
<?php 
$myVarTest=$_POST[test];
// I would recommend you run a security function on this variable though.
echo $myVarTest; 
?>

 

Sorry if my code isn't that neat, it is just a quick example.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.