answersLogoWhite

0

" / "

and

' / '

However the same starter must end e.g.:

echo " '; is wrong

echo ' "; is wrong

echo " ' "; is right

echo ' " '; is right

echo " " ' '; is wrong - in this case echo " " . ' '; is right.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is var char in php?

Varchar in SQL means string in PHP.


How do you remove whitespaces from a string in PHP?

<?php trim(ereg_replace( ' +', ' ', $extraWhiteSpace)); ?>


How to use strings with PHP and MySQL?

If you will see this example as below, this may help. <?php $string = mysql_real_escape_string($string); $sql = "insert into stringtable(mystring) values('$string')"; ?>


How do you get the length of an ANSI string using PHP?

$string ="Guess my length"; $length = strlen($string); now the $length will have the length of the string.


How do you check the length of a string in PHP?

It is fairly simple to check the length of a string in PHP. All you need to do is use the function strlen(). Below is an example of how it is used. <?php $my_text = "Hello"; echo strlen($my_text); // outputs 5 ?>


What does the php function eval?

The eval() function evaluates a string as PHP code. http://us.php.net/manual/en/function.eval.php


What is PHP Delimiter?

Delimiter is a special character or a symbol to seperate the string


How do you reverse a string in PHP?

A predefined function can reverse a string as shown below:echo strrev('pizza'); // outputs: azzip


What will be tension in string if same force acts on the ends of string?

The tension in any part of the string is equal to the force that pulls the string at the ends (assuming for simplicity that the string is basically weightless).


What word that starts with AN and ends with OR?

A word that starts with AN and ends with OR: ancestor.


How does password appear as a string of dots?

It's a php (web script) string that turns characters into "dots" in most password fields.


How do you write string in reverse through the HTML tags?

Not possible through html. Use php strrev function. For eg: