-
Replied To a Post in Problem with CSS
based on the link you provided, and what I think you described, it looks like you have it working. What am I missing? -
Began Watching Problem with CSS
I have a problem with CSS. Please for assistance. Yelim to me the picture is positioned at the center of the page and not the left or the right. I … -
Replied To a Post in PHP and mysql
$start=date('Y-m-d',$cdate); echo "<td>".dateDifference($strat ,$row['ldate'],$differenceFormat = '%d' ) ."</td>"; You misspelled "start" as "strat" -
Replied To a Post in DECLARE and SELECT multiple variables in SQL Server
You arent far off... however, you leave some interesting questions.. such as why use a decimal for a ClientNumber? Doesn't matter, though.. DECLARE @Template_Account decimal(10,0) = 8, @Field1 nvarchar(max), @Field2 … -
Began Watching DECLARE and SELECT multiple variables in SQL Server
Hi all, I'm working on a SQL procedure to insert a row for new clients based on a template account that already exists in the database. I thought about Declaring … -
Replied To a Post in HELP HELP HELP!!!!!!!
Ok.. what in particular do you need help with? -
Began Watching HELP HELP HELP!!!!!!!
Create a “C program” that determines whether or not a person is qualified to vote. Test for the following criteria for voting: Ask for the users first and last name … -
Replied To a Post in Join SQL Databases from different servers
Are they linked servers? SQL Server or MySQL? If linked, you can do as suggested here: http://stackoverflow.com/questions/1144051/selecting-data-from-two-different-servers-in-sql-server That link also gives examples on how to set them up, but it … -
Began Watching Join SQL Databases from different servers
I am looking how to join two different tables from two different databases into one datagrid view. To make things more clear I am using two different connection strings to … -
Replied To a Post in How to clear some unwanted errors on Console
Well... for one, you can not use 3rd party code that has errors. If that's not an option, you can look to ensure that you are implementing their code appropriately, … -
Began Watching How to clear some unwanted errors on Console
i have a project that uses third party websites, urls and images and i am getting about 10.000 ERRORS on the console errors like: dmp.214...e1b7.js (γραμμή 3) SoundCloud Embed Player … -
Replied To a Post in PHP and mysql
function dateDifference($date_1 , $date_2 , $differenceFormat = '%a' ) echo "<td>".dateDifference('edate','ldate',$differenceFormat = '%d' )."</td>"; Your function expects 2 dates as the first parameters. When you invoke the function, you are … -
Began Watching PHP and mysql
Dear Friends, I created Table in PHP. Columns are SrNo. ---- Tender Detail----- Last Date----- Remaining Days ---------- Status(Pending/Proceded) I have Database in mysql. I get "last date" from database … -
Replied To a Post in Ajax is not getting data and starting the $_SESSION PHP/AJAX
have you tried var_dump ($_GET)? Also, it seems you are only sending id_price, but your isset() looks for id_price and size_id, which means you need to add that along with … -
Replied To a Post in Ajax is not getting data and starting the $_SESSION PHP/AJAX
Ok, what about adding the var_dumps on the variables? -
Replied To a Post in Sync local folder with FTP folder
Heh.. you want to build a personal one drive? That's kinda neat.. I might try and figure that out, too... -
Began Watching Sync local folder with FTP folder
I have a machine, I have a hosting with FTP. On my venture I found out about `lftp`. And the instructions are here: http://www.dangibbs.co.uk/journal/ftp-sync-usin-linux Snippet is this: open ftp://username:password@website.com mirror … -
Replied To a Post in Ajax is not getting data and starting the $_SESSION PHP/AJAX
well... if you are using sessions, where is your session start? It should always be before headers are set. Other than that, you are simply replacing the one time super-global … -
Began Watching Ajax is not getting data and starting the $_SESSION PHP/AJAX
I have two dropdowns where ajax gets the value from it and send to my page calculates.php and then i will get a result based on both dropdown selection. But … -
Replied To a Post in PHP options calculator type script
Sounds like a job for javascript instead of php imo. However.. What seems to be your problem with this? Have you tried it yourself yet? -
Began Watching PHP options calculator type script
Hi I'm trying to find a script that will allow me to set multiple options eg. option 1 = 40, option 2 = 15, option 3 = 30 etc where … -
Replied To a Post in IFrame Not Displaying
So... aside from etiquette issues, has anyone considered that google may be actively blocking the use of their site inside a frame? Has any other site been able to load … -
Began Watching IFrame Not Displaying
So I'm making an OS in javascript/html. I made the login screen (although it's as secure as a calculator, it looks quite nice). I made the Operating System Interface using … -
Replied To a Post in Captcha Implementation with Javascript
Doing a pure client side (javascript only) captcha will not enhance security. Since all of your code would be visible to the client, even minified, someone could simply bypass it … -
Began Watching Captcha Implementation with Javascript
Hi, I am a developer. I have been searching for best suited web development forums which provide helpful information on web development, so that I can get help from their … -
Replied To a Post in how do I submit many items into the database with out a huge insert
No, correct syntax is $query = "INSERT INTO SURVEY (surveyid,q1,q2,q3) VALUES (?,?,?,?), (?,?,?,), (?,?,?,)"; -
Replied To a Post in how do I submit many items into the database with out a huge insert
@Atli, Your table design doesnt handle multiple answers per question well :-/ However, your point is valid and should probably be considered :) -
Replied To a Post in how do I submit many items into the database with out a huge insert
SQL server 2008+ has the same syntax, and same solutions otherwise. Batch it, or make a stored proc that takes a delimited string and makes the batch for you. -
Replied To a Post in how do I submit many items into the database with out a huge insert
If you have an up to date version of mySQL you can have PHP write something like this: insert tableName (a, b) values (c,d), (e,f), (g,h) .... (y,z); http://dev.mysql.com/doc/refman/5.5/en/insert.html Alternatively, … -
Began Watching how do I submit many items into the database with out a huge insert
currently I have a survey with 10 questions on a html/ php form. I use post data and then have a long insert statment. My code looks something like this. … -
Replied To a Post in soap
are you sure you have the correct URL? Are you sure they exist? -
Began Watching soap
This is my soap code try{ $client = new SoapClient( "https://www.tntexpress.com.au/webservices/booking.svc?Wsdl" , array('username' => "xxx",'password' => "yyy") ); $params = array( "SenderAccount" => 30017823, "SenderDetails" => "ROSEHILL 2142 NSW EAST", … -
Replied To a Post in PHP Mail header issue
Im not sure why you are doing this, but "\" is an escape delimiter in PHP - so if you type \" it will treat the " as a string … -
Began Watching PHP Mail header issue
I was trying to tweak some html headers due to change in content type and facing a weird issue When I execute the below code it doesn't gets email delivered … -
Replied To a Post in Carry Over Balance
Well... it is not written the way I would personally do it... it looks like too much is being attempted because "it can be done" instead of taking a direct … -
Replied To a Post in Help with AJAX and fetching data from HTML dropdown
?s= is a GET request, not a POST. -
Began Watching Help with AJAX and fetching data from HTML dropdown
I'm trying to get the text value from a select dropdown menu that is populated by a database using the following function: <?php function searchintspokenlang() { require ('../../../connect_db.php'); $queryintspoken="SELECT Language … -
Replied To a Post in Carry Over Balance
If that's the same calculation each time in that case statement, why not do it once as its own output, and use that value's alias in your case statement. You … -
Began Watching Carry Over Balance
I have a query that get the balance for last month and current month balance. I'm using a function inside the view that took more than 30 minutes. May I … -
Replied To a Post in Css height issue
When posting questions like this, it really does help to have a "live" demo page available. That said... A couple comments on what I do see... you have a "fixed" … -
Began Watching Css height issue
Hello there I am currently just making a sample website to try and get back into the swing of things but I am encountering a problem with one of my … -
Replied To a Post in INNER JOIN Duplicate Result
Well.. if you have a duplicate, what exactly makes them different from each other so they are atomic? If they are exact duplicates, then you will also have to MIN … -
Replied To a Post in INNER JOIN Duplicate Result
Try including plateNo, Make, and Model into your group by. Im not sure how you would have multiple matching rows, but this may be your issue :-/ -
Began Watching INNER JOIN Duplicate Result
Hi! Having a hard time figuring out how to solve this problem at hand. basically i have several tables that are inter connected in some manners but i need to … -
Replied To a Post in Recent mySQL records
To answer your question - yes, you would limit to only the last 10 posts with your query. You query would look something like this: select U.UserKey, M.MessageKey from User … -
Began Watching Recent mySQL records
Hi all, Say I have a table called "posts" with thousands of records. For each user, I want to display the top 10 most recent posts. I would normally use: … -
Replied To a Post in Is 5MB of SQL to front-end result too much for browser?
For the record, my suggestion was to make a stub html page that has a single script element that has your formatted data on the page already. Not really a … -
Began Watching Is 5MB of SQL to front-end result too much for browser?
If user issues a query, I would like AJAX to download the result of query into browser so that JavaScript can do the parsing. The results could be around 1MB-5MB … -
Replied To a Post in Is 5MB of SQL to front-end result too much for browser?
On a "modern" machine, probably not. You will have a longer delay simply downloading the data. However, if this is the path you plan on taking, I would let PHP … -
Began Watching Put two divs next to one another, without float and flexbox
My first problem was. "I have this box, I need this box to be 230px, and I have second box, that needs to take entire space remaining". My solution to …
The End.