-
Replied To a Post in I need to declare a variable and use it for my edit button updateID
Instead of contactid in the php code on the bottom change it “ticketnumber” or use a ‘if(isset….. )‘ code -
Began Watching I need to declare a variable and use it for my edit button updateID
I have a subform called "Contacts" embedded on my "Tickets" page. I want to create an edit button to jump to my contacts_edit.php page and use the 'ContactEntryNumber' (the unique … -
Replied To a Post in updating names not values
Echo $sql in your first statement and see what values are being submitted. See if any are null or not being converted to strings that is unrecognizable. -
Replied To a Post in php variable issue
one thing is where is the new status coming from? is it coming from the URL? if so, you can have something like: <!DOCTYPE html> <html> <body> <?php <?php if(isset($_GET['status'])){ … -
Began Watching php variable issue
I need to add variable called $new_status, but its not being recognised on php, any suggestions. $sendData = '{ "messages" : [ { "content" : "Your order is $new_status.", } … -
Replied To a Post in updating names not values
$sql = "UPDATE payfile set amtpaid = '', late ='', hudpay ='', paidsum ='', datepaid ='', latechg = '', secdep = '', damage = '', courtcost = '', nsf = … -
Began Watching updating names not values
> Hi guys, I blinked and got lost. All I want to do is copy Payfile to Pmtfile and then update records in Payfile that have been paid(amtpaid !=''). The … -
Marked Solved Status for Add Elements to Static Picture
Hi Everyone, I am looking for a way to add a username to confirm a seat choice for certain weeks, I already have the PHP Code to confirm the seat … -
Gave Reputation to rproffitt in Add Elements to Static Picture
Let's check out this tutorial -> https://www.w3schools.com/howto/howto_css_image_text.asp -
Created Add Elements to Static Picture
Hi Everyone, I am looking for a way to add a username to confirm a seat choice for certain weeks, I already have the PHP Code to confirm the seat … -
Began Watching Add Elements to Static Picture
Hi Everyone, I am looking for a way to add a username to confirm a seat choice for certain weeks, I already have the PHP Code to confirm the seat … -
Created Use jQuery Autocomplete to populate from multidimenisonal JSON array
I have a JSON array that has multidimensions to it: { "@id": "a", "@label": "A", "drecord": [ { "@id": "aaliyah", "@rdate": "2001-08-25", "@lease": "bh05", "name": { "surname": "Aaliyah" }, "job": … -
Began Watching Use jQuery Autocomplete to populate from multidimenisonal JSON array
I have a JSON array that has multidimensions to it: { "@id": "a", "@label": "A", "drecord": [ { "@id": "aaliyah", "@rdate": "2001-08-25", "@lease": "bh05", "name": { "surname": "Aaliyah" }, "job": … -
Replied To a Post in accessing data on MultiLevel Json Array
This is what is returned -
Replied To a Post in accessing data on MultiLevel Json Array
Hi, thanks for the reply, i updated my code as follows: var jsonArray = results; var li; for(var i in jsonArray){ var objectInstance = jsonArray[i]; for(var j in objectInstance.drivers) { … -
Created accessing data on MultiLevel Json Array
Hey everyone, I have a JSON array that pulls data, its an immense amount of data that i use. It is a multilevel array eg: dateTime: 2018-12-04T10:30:45:222z comments:"" +Driver[0] [0] … -
Began Watching accessing data on MultiLevel Json Array
Hey everyone, I have a JSON array that pulls data, its an immense amount of data that i use. It is a multilevel array eg: dateTime: 2018-12-04T10:30:45:222z comments:"" +Driver[0] [0] … -
Marked Solved Status for I know Im Close,..But I have a JS Problem
I have a code that pulls a JSON response, and I need to compare times from now() and a previous when the timestamp was created. I am able to pull … -
Created I know Im Close,..But I have a JS Problem
I have a code that pulls a JSON response, and I need to compare times from now() and a previous when the timestamp was created. I am able to pull … -
Began Watching I know Im Close,..But I have a JS Problem
I have a code that pulls a JSON response, and I need to compare times from now() and a previous when the timestamp was created. I am able to pull … -
Replied To a Post in Cannot display ID in my view page **i can view name, address, contact No, L
are you passing the `id` variable in the link to the page? When you do a $_REQUEST['id'] its looking for `?id=1 or ?id=testuser` in the link from the previous page. -
Began Watching Cannot display ID in my view page **i can view name, address, contact No, L
<?php require('db.php'); include("auth.php"); $id=$_REQUEST['id']; $query = "SELECT * from new_record where id='".$id."'"; $result = mysqli_query($con, $query) or die ( mysqli_error()); $row = mysqli_fetch_assoc($result); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> … -
Replied To a Post in php,mysql
Whats the error? and you are also wide open to [SQL Injection](https://www.w3schools.com/sql/sql_injection.asp). After `$qur` put `or die("Mysqli Error: " $qur");` -
Began Watching php,mysql
Hi Friends i am trying to isert this data to mysql database. However I cannot get this done because I do not know what is happening. I would appreciate any … -
Replied To a Post in question: Do i need to do a formula for each state calculation
Here is where i got to so far. CaclulateTaxGallons = function() { $('tr.IFTAtable').each(function(i, el) { var $this = $(this), $miles = $this.find('[name="stateMiles\\[\\]"]'), $mpg = $this.find('[name="mpg\\[\\]"]'), c = parseFloat($miles.val()), q = … -
Replied To a Post in question: Do i need to do a formula for each state calculation
I am trying to figure out this loop for the math statement, I am completely lost on how to do it based on each state. Here is my fiddle on … -
Replied To a Post in Simple Jquery Math issue
when i populated the number...i had a localization string `.toLocaleString()` and it was messing up the number. Once i removed the `.toLocaleString()` it fixed it and its now working beautifully. … -
Marked Solved Status for Simple Jquery Math issue
Guys and gals, I am trying to do a simple LITTLE DIVIDE problem using jQuery its getting the values, but when its returning the results, it as if they are … -
Created Simple Jquery Math issue
Guys and gals, I am trying to do a simple LITTLE DIVIDE problem using jQuery its getting the values, but when its returning the results, it as if they are … -
Began Watching Simple Jquery Math issue
Guys and gals, I am trying to do a simple LITTLE DIVIDE problem using jQuery its getting the values, but when its returning the results, it as if they are … -
Replied To a Post in question: Do i need to do a formula for each state calculation
but that still isnt what i am wondering, Each `input` is going to have a state eg: `<td><input type="text" readonly="readonly" class="WV calcTax" /></td>` `<td><input type="text" readonly="readonly" class="PA calcTax" /></td>` `<td><input … -
Replied To a Post in question: Do i need to do a formula for each state calculation
Okay, so ill make it a text box where they put the value they get from the feds., but my main focus, is how would i calculate each row of … -
Replied To a Post in question: Do i need to do a formula for each state calculation
Hello rproffitt, We are a trucking company, the taxes are basically going to hard coded into a PHP Database, I know that they will change and I will be responsibe … -
Created question: Do i need to do a formula for each state calculation
Hey everyone, I have a table, that is going to used to calculate IFTA, its a fueltax calculator populated by each state and the rate of each state. My question … -
Began Watching question: Do i need to do a formula for each state calculation
Hey everyone, I have a table, that is going to used to calculate IFTA, its a fueltax calculator populated by each state and the rate of each state. My question … -
Replied To a Post in Do i need $each() if i have for loop in JS?
another screenshot -
Replied To a Post in Do i need $each() if i have for loop in JS?
here is the output -
Replied To a Post in Do i need $each() if i have for loop in JS?
Hi PTY, here is my Fiddle its just showing the js code i am using. [Fiddle](https://jsfiddle.net/15ppzrzv/1/) -
Created Do i need $each() if i have for loop in JS?
Question, I have a `$each(array, function());` and within that statement, i have a` for` loop , Is it safe to be doing this? and could this be the reason that … -
Began Watching Do i need $each() if i have for loop in JS?
Question, I have a `$each(array, function());` and within that statement, i have a` for` loop , Is it safe to be doing this? and could this be the reason that … -
Marked Solved Status for Using DataTable.net to display JS array values from API
6 ●4 I have a code that displays an array from GeoTab SDK, I am able to get the array to display in the console.log, and it populates the results … -
Created Using DataTable.net to display JS array values from API
6 ●4 I have a code that displays an array from GeoTab SDK, I am able to get the array to display in the console.log, and it populates the results … -
Began Watching Using DataTable.net to display JS array values from API
6 ●4 I have a code that displays an array from GeoTab SDK, I am able to get the array to display in the console.log, and it populates the results … -
Created convert JSON.stringify to HTML Table
Hey everyone, I have a script that does an API call, the results are displayed in a json array, but i am trying to break them down into HTML tables … -
Began Watching convert JSON.stringify to HTML Table
Hey everyone, I have a script that does an API call, the results are displayed in a json array, but i am trying to break them down into HTML tables … -
Marked Solved Status for SCRIPT438: Object doesn't support property or method 'ajax'
Hey everyone, this code below is giving me a weird error, Script 438: Object doesn't support property or method 'ajax'. I am testing this in Microsoft Edge, but...I have a … -
Replied To a Post in SCRIPT438: Object doesn't support property or method 'ajax'
It was something completely stupid, I was using the slim version of jQuery CDN, instead of the full version. It was a simple mistake that was overlooked until i went … -
Replied To a Post in SCRIPT438: Object doesn't support property or method 'ajax'
Hi rproffitt, I am unable to run this on chrome either, its throwing the error that $.ajax is not a function??? I never heard of this. -
Created SCRIPT438: Object doesn't support property or method 'ajax'
Hey everyone, this code below is giving me a weird error, Script 438: Object doesn't support property or method 'ajax'. I am testing this in Microsoft Edge, but...I have a … -
Began Watching SCRIPT438: Object doesn't support property or method 'ajax'
Hey everyone, this code below is giving me a weird error, Script 438: Object doesn't support property or method 'ajax'. I am testing this in Microsoft Edge, but...I have a …
The End.