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
https://forums.phpfreaks.com/topic/68642-solved-variable-with-spaces/
Share on other sites

Really? I never have problems with this.

 

I just tried it to play around, mine works fine :S

 

test.php

 

<?

$var = "hello there";

echo $var;

?>

 

^works fine

 

I also used single quotes...still worked fine

 

Edit: Oooh, people r responding, kewl, ill shutup now cuz im a noob :P

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.