Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 134
Search took 0.26 seconds.
Search: Posts Made By: coding_begins
Forum: JavaScript frameworks 03-07-2012, 04:34 AM
Replies: 5
Views: 1,231
Posted By coding_begins
well it's on a different page and i tried the...

well it's on a different page and i tried the above..but it doesn't show me the datepicker..
Forum: JavaScript frameworks 03-07-2012, 03:51 AM
Replies: 5
Views: 1,231
Posted By coding_begins
thanks it works for the first one..it doesn't...

thanks it works for the first one..it doesn't work for this one though..
<script type="text/javascript">
$(function() {
var MyMinDate = $("#date" ).datepicker( "option", "minDate" );
...
Forum: JavaScript frameworks 03-07-2012, 02:40 AM
Replies: 5
Views: 1,231
Posted By coding_begins
jquery datepicker with maxDate

<script type="text/javascript">
$(function(){
$("#testdate").datepicker({ dateFormat: 'm/d/yy', minDate: 0,maxDate:minDate + 14});
});
</script>

<script type="text/javascript"> ...
Forum: JavaScript programming 03-06-2012, 04:48 AM
Replies: 1
Views: 593
Posted By coding_begins
jquery datepicker with php variable issue:

Can someone please tell me how I can make the datepicker pick a date that is after a certain date I choose.

<script type="text/javascript">

$(document).ready(function() {
$( "#date"...
Forum: PHP 02-14-2012, 10:12 PM
Replies: 1
Views: 265
Posted By coding_begins
encrypt and decrypt a number

how can i encrypt a number to store in a database and decrypt it to receive it?
Forum: JavaScript frameworks 02-10-2012, 10:36 PM
Replies: 12
Views: 761
Posted By coding_begins
Thanks

Thanks
Forum: JavaScript frameworks 02-10-2012, 09:20 PM
Replies: 12
Views: 761
Posted By coding_begins
That doesnt work either: below is my complete...

That doesnt work either:
below is my complete code:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US"...
Forum: JavaScript frameworks 02-10-2012, 06:53 PM
Replies: 12
Views: 761
Posted By coding_begins
I removed the old one and tried the new..but the...

I removed the old one and tried the new..but the script just does not seem to run.
It runs in jsfiddle.net, its really strange
Forum: JavaScript frameworks 02-10-2012, 06:05 PM
Replies: 12
Views: 761
Posted By coding_begins
www.cs.txstate.edu/~sr1388/Test/

www.cs.txstate.edu/~sr1388/Test/
Forum: JavaScript frameworks 02-10-2012, 04:53 PM
Replies: 12
Views: 761
Posted By coding_begins
its still displaying an error. I get a $,jquery...

its still displaying an error.
I get a $,jquery and DP_jQuery_1328892775977 in red as an error
Forum: JavaScript frameworks 02-10-2012, 04:24 PM
Replies: 12
Views: 761
Posted By coding_begins
I included that now but the jquery still does not...

I included that now but the jquery still does not work.
Forum: JavaScript frameworks 02-10-2012, 03:40 PM
Replies: 12
Views: 761
Posted By coding_begins
jquery script showing $ not defined in firebug

I wrote this j query script which works fine in the jsfiddle.net but does not work in the server at www.cs.txstate.edu/~sr1388.
In firebug it says $ not defined. Am i Missing any file?

<script...
Forum: PHP 02-08-2012, 07:40 PM
Replies: 0
Views: 296
Posted By coding_begins
unsetting a session through zend view?

I need to store lot of errors separately like $_SESSION['client_error'],$_SESSION['state_error'] etc.
According to zend documentation do I have to store it like this for each error?

...
Forum: PHP 02-08-2012, 07:13 PM
Replies: 3
Views: 299
Posted By coding_begins
never mind..i did this foreach ($array as $key...

never mind..i did this
foreach ($array as $key => $value) {
foreach($value as $final=>$result){
echo $final.":".$result."<br>";
}
}
Forum: PHP 02-08-2012, 07:08 PM
Replies: 3
Views: 299
Posted By coding_begins
printing as an html table.

print_r($array) gives me the following:
Array ( [0] => Array ( [name] => jim [age] => 19 ) [1] => Array ( [name] => John [age] => 23 ) [2] => Array ( [name] => jason [age] => 34 ) )

How do i...
Forum: PHP 02-08-2012, 12:59 AM
Replies: 3
Views: 299
Posted By coding_begins
sort an array

I want to parse the JSON string below into an associative array, sort it by the 'age' field and output the sorted array as an HTML table:

$json='[{"name": "jesse","age": 25},{"name":...
Forum: PHP 02-08-2012, 12:45 AM
Replies: 3
Views: 322
Posted By coding_begins
Thank you very much.

Thank you very much.
Forum: PHP 02-07-2012, 10:22 PM
Replies: 3
Views: 322
Posted By coding_begins
questions on query string,service call

I thought I had a decent bit of knowledge on PHP/MYSQL, but then I was asked these questions in an interview and I didn't know how to answer them. Googling them didnt give me a satisfactory question....
Forum: JavaScript frameworks 02-07-2012, 03:25 AM
Replies: 2
Views: 685
Posted By coding_begins
display dropdown menu based on previous drop down.

I have the following form fields:

<label for="carrier_sold">Carrier Sold: </label>
<select name="carrier_sold" id='carrier_sold'>
<option id='carrier_sold' value=""...
Forum: PHP 02-06-2012, 10:12 PM
Replies: 4
Views: 472
Posted By coding_begins
C) Have your form point to the current page,...

C) Have your form point to the current page, which will do the validation checking, and then redirects to the /test/process.php page if it passes all checks

After it passes and redirects to a new...
Forum: PHP 02-06-2012, 08:01 PM
Replies: 4
Views: 472
Posted By coding_begins
validate form erros before going to action page

I need to validate errors before it goes to action url of the form. When i click submit it goes to the /test/policy.php even though there are errors. I want it to go there only if there are no errors...
Forum: PHP 02-06-2012, 07:24 PM
Replies: 0
Views: 371
Posted By coding_begins
accessing array in view zend

I have the following code in zend:

$arrErrors=array();
if (!empty($this->post['submit']))
{
// Each time theres an error, add an error message to the error array
...
Forum: PHP 02-06-2012, 05:36 PM
Replies: 3
Views: 453
Posted By coding_begins
Thank you Fou Lou. I needed it in my SQL...

Thank you Fou Lou. I needed it in my SQL statement..
Forum: PHP 02-06-2012, 04:45 PM
Replies: 3
Views: 453
Posted By coding_begins
concatenate field names into one and return

I have the following mysql query:
$lead_query=$this->db->query("
SELECT `first_name`, `last_name` , `state` FROM leads WHERE `lead_id`='$lead_id'
");
...
Forum: Ajax and Design 02-06-2012, 03:58 PM
Replies: 5
Views: 932
Posted By coding_begins
the last time you mentioned displaying an error...

the last time you mentioned displaying an error if the query returns empty results..I am not able to display it in my form area..how do i do that
Showing results 1 to 25 of 134

 
Forum Jump

All times are GMT +1. The time now is 11:36 PM.