-
Edited How to add drop down dynamically when click a link and add values from tabl
Hi i want to add a select box every time a link is click and populate the values of select box from a table in database.How to achive this. -
Replied To a Post in find continuous dates from arrays
Sort your list by start date, then the end date of row N should be one less then the start date of row N+1. -
Replied To a Post in Best Antivirus
https://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/491304/best-anti-virus-for-my-pc -
Edited Best Antivirus
May i know which is the best antivirus for computers? -
Replied To a Post in Jquery gallery
> what technology does it take to make such an animative websites? If you look at the page source, you can see a lot of Javascript/CSS frameworks included. > I … -
Replied To a Post in invoice number automatic increment
Aren't you using an autoincrement field in your table? -
Replied To a Post in send mail : use an image as body cotent
You cannot access localhost from outside, because it always points to the machine it's on. You can only make this work if the image is on an accessible server, either … -
Replied To a Post in send mail : use an image as body cotent
You have to give a link that is accessible from the outside: http://www.yoursite.com/images/abc.png -
Replied To a Post in send mail : use an image as body cotent
Echo out what `public_path()` returns and paste it here. -
Replied To a Post in Parse error: syntax error, unexpected '''' (T_CONSTANT_ENCAPSED_STRING), ex
$db_con = ''; -
Replied To a Post in send mail : use an image as body cotent
View the source of the message and check your image path. -
Edited Parse XML value with PHP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <platformCore:searchResult xmlns:platformCore="urn:core_2012_2.platform.webservices.technoplat.com"> <platformCore:searchRowList> <platformCore:searchRow xsi:type="tranSales:TransactionSearchRow" xmlns:tranSales="urn:sales_2012_2.transactions.webservices.technoplat.com"> <tranSales:basic xmlns:platformCommon="urn:common_2012_2.platform.webservices.technoplat.com"> <platformCommon:tranId> <platformCore:searchValue>17678</platformCore:searchValue> </platformCommon:tranId> </tranSales:basic> </platformCore:searchRow> <platformCore:searchRow xsi:type="tranSales:TransactionSearchRow" xmlns:tranSales="urn:sales_2012_2.transactions.webservices.technoplat.com"> <tranSales:basic xmlns:platformCommon="urn:common_2012_2.platform.webservices.technoplat.com"> <platformCommon:tranId> <platformCore:searchValue>17705</platformCore:searchValue> </platformCommon:tranId> </tranSales:basic> </platformCore:searchRow> <platformCore:searchRow xsi:type="tranSales:TransactionSearchRow" … -
Replied To a Post in MVC Edit Error, Must be a date.
Not enough information. -
Replied To a Post in Blocking DLL
http://stackoverflow.com/questions/193896/whats-a-good-c-decompiler Not addressing any legal issues you're gonna have... -
Replied To a Post in How to insert data from mvc to mssql manually?
> I am working at MVC, not in windows application. The basics are the same for both. -
Edited C# update then delete record in datagridview
Hi, in my project i need to update the attn_dateTimeOut in database.After i updated it will automatic delete the specific row record that had been updated. I had two question: … -
Replied To a Post in Parse error: syntax error, unexpected '''' (T_CONSTANT_ENCAPSED_STRING), ex
Line 1225 is not terminated correctly. -
Replied To a Post in Mysql_insert_id
On line 143 change `$LAST_INSERTED()` to `$LAST_INSERTED` If you change: $result=mysql_query($sql); to: $result = mysql_query($sql) or die(mysql_error()); You get a hint at what's possibly wrong. -
Edited Mysql_insert_id
I have two tables in my database.Users table and contact table,i want to use the ID that was generated from Users table to contact table.Below is the script for Users … -
Replied To a Post in works on local server but not live
http://php.net/manual/en/mysqli-result.fetch-array.php `mysqli_fetch_array` returns a row, so you should store that in a variable. -
Edited How to make menu tabs appear on top of different sections
I have section blocks on my site, with menu tabs on top of the first section. I want to make the tabs scroll with the user so that it appears … -
Replied To a Post in trying to use var. to tell sql what to do
`WEEKDAY` is an SQL function, so if you also have a column with the same name, that might be your issue. -
Replied To a Post in How to edit or modify only the specific data from database?
> I don't know where to start. http://www.asp.net/mvc/overview/getting-started/introduction/getting-started -
Edited Save record and send email in php
Hi, i have problem to save record and send email in php. After selecting the responsible person, the system supposed to save the responsible person in the database and then … -
Edited Self Introduction - Manish Shah
hi guys. This is Manish shah from India. I am new to Daniweb community. But am already getting a lot of interrest, with respect to the engagement, that is going … -
Edited Saba
I am computer enggineer and i want to open a small software Company. initially only I ,we work in Small Software Company.But I want personal Software Company: 1. is it … -
Replied To a Post in <b>Parse error</b>: syntax error, unexpected 'if' (T_IF)
Invalid syntax. What do you want to happen? <option ' . ($a == $b ? 'selected' : '') . '>asd</option> -
Replied To a Post in php script not working
> Not sure why its not working. That's a bit vague. Can you explain what exactly is not working? -
Edited php script not working
This script worked last year. Not worked on a site for a while. Not sure why its not working. Cans someone help please. <?php mysql_connect ("localhost", "user","pw") or die (mysql_error()); … -
Replied To a Post in Where'd the pending article go?
I think you'll need to request that from an admin, mods can't either (yet). -
Replied To a Post in Registration Button Not Working
I think you need to remove line 51. -
Marked Solved Status for Web API
Am currently trying to use the Web API and accept a HTTP POST containing an XML. I was under the impression that this could be automatically deserialized into an object, … -
Stopped Watching Web API
Am currently trying to use the Web API and accept a HTTP POST containing an XML. I was under the impression that this could be automatically deserialized into an object, … -
Replied To a Post in Web API
Why is it always you find the answer right after posting. I forgot to add: var xml = GlobalConfiguration.Configuration.Formatters.XmlFormatter; xml.UseXmlSerializer = true; as mentioned on [SO](http://stackoverflow.com/questions/11142702/aspnet-webapi-post-parameter-is-null-when-sending-xml). The XML I am … -
Began Watching Web API
Am currently trying to use the Web API and accept a HTTP POST containing an XML. I was under the impression that this could be automatically deserialized into an object, … -
Created Web API
Am currently trying to use the Web API and accept a HTTP POST containing an XML. I was under the impression that this could be automatically deserialized into an object, … -
Edited pagination doesn't handle special characters
I'm currently having an issue with the pagination script that I have in place. When a search is made for a particular item containing an "apostrophe", the results are rendered … -
Edited Jquery mobile with Codeigniter ajax posting with 2 forms on the same page
I have a page that has 2 forms on it. It's an inventory system. One form is to add items to your inventory. The second form is to update your … -
Edited Magic 8 Ball Help??
I'm having difficulties with this code...it won't randomize the answer for some reason #include <string> #include <iostream> #include <cstdlib> #include <iomanip> #include <fstream> #include <ctime> #define down8 "\n\n\n\n\n\n\n\n" #define down7 … -
Edited eclipse
i got this error in java eclipse Cannot create extension org.eclipse.core.runtime.CoreException: Cannot create extension at org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin.java:296) at org.eclipse.ui.internal.registry.EditorDescriptor.createEditor(EditorDescriptor.java:235) at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:318) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPart(CompatibilityPart.java:266) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPart(CompatibilityEditor.java:61) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:304) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at … -
Replied To a Post in Hello from Canada
Welcome to DaniWeb. -
Replied To a Post in Present days calculation
Copy for MySQL: https://www.daniweb.com/web-development/databases/mysql/threads/457944/read-this-before-posting-a-question Additions always welcome. -
Replied To a Post in What to use as a timer in .net c#
I usually run it as a service, but if you set it up in the global.asax it should keep running. -
Edited Cisco Study Group - Columbus, Ohio
I have been trying to start a study group for Cisco certifications and networking in general. I have my CCNA, I will be attempting my CCDA soon, and then I … -
Replied To a Post in how to create textarea HTML tag in a model
https://msdn.microsoft.com/en-us/library/system.web.mvc.htmlhelper%28v=vs.118%29.aspx -
Replied To a Post in how to create textarea HTML tag in a model
You can add `[DataType(DataType.MultilineText)]` just before your property definition, or use: @Html.TextAreaFor(model => model.Message, new { cols = 35, @rows = 3 }) -
Replied To a Post in What to use as a timer in .net c#
Personally I prefer a tool like [Quartz](http://www.quartz-scheduler.net), but you can use a regular timer. -
Replied To a Post in Debug ASP.NET MVC Website Without Closing Browser Tab
https://msdn.microsoft.com/en-us/library/7yty6a48.aspx -
Replied To a Post in increment a number with leading zeros
You should keep it as an int, and display with leading zeroes where necessary. -
Replied To a Post in Help with this mysql query
I couldn't run the query above, as you did not post the structure and (test) data for the maillist table. Be careful what you post this time though.
The End.