PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
hi guys! really need help here...
Can you help me link to pop up window inside in the php code <?php put a link to call pop up?.... ?>
the problem here is when I click the link it will just link to a new tab not pop window...please help
here is my code:
if that is the exact code, then your problem is most likely an issue with the quotes in your onclick. You need to wrap the onclick setting with \" instead of a single quote.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
twinedev wrote:if that is the exact code, then your problem is most likely an issue with the quotes in your onclick. You need to wrap the onclick setting with \" instead of a single quote.
-Greg
hey greg..thanks for that!...but can you give me example for this concatenation...really appreciate your answer..
$foo = 'my foobar string';
$foo .= ' just got a little longer';
$foo .= ' but guess what, it just got even longer';
echo $foo; //my foobar string just got a little longer but guess what, it just got even longer