Hello
I want that in jquery date picker. default value of text box will be current date. How can I do that. I tried php script like this

<input type="text" id="datepicker" name="rcv_date" value="
<?php
echo date(m).'/'.date(d).'/'.date(Y);
?>
">

But it has little error. There is an extra space at the beginning. Can Anybody help me.

Use this:

<input type="text" id="datepicker" name="rcv_date" value="<?php echo date('m/d/Y');?>">
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.