-
Edited Title Updating
I have a curiosity about the “Title” of a member. Though, I do not worry about it, but I have a question on this matter. Why “Title” is assigned/updated by … -
Replied To a Post in create file repository for my website
You can always upload files with an FTP client. -
Replied To a Post in create file repository for my website
[Here](http://asp.net-tutorials.com/controls/file-upload-control/) is an example. -
Replied To a Post in create file repository for my website
GitHub is free, but the free accounts do not have private repos. So anybody could access your files. If you want private, BitBucket provides that. Uploading files to your website … -
Replied To a Post in Hi JamesLV
Welcome to DaniWeb. -
Replied To a Post in how to do work on ext js?
What do you want to do exactly? -
Replied To a Post in updating xml node value with simpleXML API is failing
I think it should be something like this: $query = "//*[@ID=444]//*[text() = 'data2']"; since you want to find the text value of a node. Am a bit rusty in xpath, … -
Replied To a Post in Which platform is best for website designing(wp,drupal...)?
They all have their strengths and weaknesses. There is no single best. Pick the right one for the job instead. -
Replied To a Post in New forum listing page
> The rss icon looks out of place Agreed. Why not use fa-rss? -
Replied To a Post in SQLSTATE[HY093]: Invalid parameter number: number of bound variables does n
> want correct! I want a lot of things.. If you don't post what you have, I can't help. According to the error one of your parameters is not defined. -
Replied To a Post in regular expression for not accepting only special characters
> my string should contain atleast one character. Use `+` instead of `*` You need to escape the dot too: /^[ A-Za-z0-9_@\.#&,()-]+$/ -
Replied To a Post in SQLSTATE[HY093]: Invalid parameter number: number of bound variables does n
Use: $statement ->bindValue('name', $name); without the colon. -
Replied To a Post in What are the procedure for adding adsense account for a website?
https://support.google.com/adsense/ -
Replied To a Post in SQLSTATE[HY093]: Invalid parameter number: number of bound variables does n
If you bind values by name, you must use those names in your query, instead of the question marks: $sql .='VALUES (:name, :registered-name, ... and so on -
Replied To a Post in Pagination: limiting the number of pages
I am sure the code can be found on this site too. I know I've posted one possible solution, but I haven't found it yet. -
Replied To a Post in You have an error in your SQL syntax
> ''Economy'' Single quotes need to be escaped. -
Edited web crowling code
I have some code help. <?php error_reporting(0); //$cat = $_POST['cat']; $uri = 'http://ventureburn.com/feed/'; $xml = simplexml_load_file($uri); $namespaces = $xml->getNamespaces(true); $i = 0; $data = ''; //echo '<pre>'; //print_r($xml); //echo '</pre>'; … -
Replied To a Post in Career advice needed for software engineer with 3 years experience.
Exam-ref 486 perhaps: https://www.microsoftpressstore.com/store/exam-ref-70-486-developing-asp.net-mvc-4-web-applications-9780735677210 -
Replied To a Post in Career advice needed for software engineer with 3 years experience.
Welcome to DaniWeb. What language/databases are you working with? Look for certifications in those areas. -
Replied To a Post in Hello, everybody!
Welcome to DaniWeb. -
Edited Problem with CheckBox
I have the follow code, with checkboxes. Tried to do an array. I send these checkboxes to my mail-process file. How I do, that I only get these values, from … -
Edited Updating Database with Multiple Checkboxes
I have this code that will display whatever that was checked in the checkboxes, but the problem is that this should be an Updating code and not just Adding information, … -
Edited Keywords improvement in SERP Position
My website showing many keywords in 1st page 7 position, i am hardly working last 3 month and following all kind of off page activities with quality content and high … -
Replied To a Post in Delete A Thread
You should have thought of that before posting, as removing threads only occurs when they violate our rules. -
Edited happy new year everyone
hi everyone ezpecially jamescherrill I just want to wish each and everyone a happy new year and I hope that it meet everyone in the best of health, strength, wealth … -
Edited Dell Laptop
hey guys I have a pc which is "Dell latitude E6400" its problem is that it doesn't start up now i've checked it to see if it is the screen … -
Edited passing parameter using url
hi, I am creating an android app that is supposed to retrieve data from a remote database (Mysql) I'd like to pass the parameter to my php file using url … -
Edited Can't start a different app from my app using package name
Hi, I am trying to open Chrome app from my application. Code is simple. I got the package name of Chrome app by using this code: PackageManager manager = Values.activity.getPackageManager(); … -
Gave Reputation to almostbob in Help with PHP and HTML
fellow coders? We may be coders, doubt very much if . . . I'm trying, really mods, to be more polite, its difficult to respond politely when the op is … -
Replied To a Post in Help with PHP and HTML
> asking if anyone have some old codes! That's not how your question was formulated: > can anyone make me a working login system ... it doesn't take long to … -
Replied To a Post in automatically fill fields from resume
There are many tools for converting files into text, but parsing them is something else entirely. Not one resume is identical, so you have to account for all variations of … -
Replied To a Post in automatically fill fields from resume
> On upload of resume Any specific format? -
Replied To a Post in Harmonising my json_decode()
$var = new JsonMaker("blabla.json"); -
Replied To a Post in Linq Consecutive GroupBy
Here's an update. Turned the code into a Linq extension to make it more flexible: using System; using System.Collections.Generic; using System.Linq; namespace ConsecutiveGroupBy { public static class Extensions { private … -
Edited Bitcoin
How do I mine a bitcoin? -
Replied To a Post in Is Zend studio the best way to create php mobile apps?
Zend the IDE, or Zend the framework? -
Replied To a Post in Buying a New Monitor
Personally, I prefer more screens over larger screens. The reason is because debugging multiple interacting applications is much easier. -
Edited Buying a New Monitor
Hello Community, I'm planning on buying a new computer monitor soon but I'm not sure which one I should buy. These are the two I'm trying to decide between [LG … -
Edited Have nice day
Hi everybody! I'm new member, nice to meet you. -
Edited Is Zend studio the best way to create php mobile apps?
I want to make my website a mobile application. I write in php and after a little research it seems that Zend is the best way to create mobile apps … -
Replied To a Post in make a puzzle solver with php
Apart from the errors, which puzzle is it solving, or am I missing something obvious? -
Replied To a Post in Linq not accepting null value after checking for null
You might need: foreach (var row in query.Where(item => item.Status != null)) Without code/data that can be tested/debugged it's hard to find another way. -
Edited Difference between Keyword Tool and Keyword Planner Tool?
what is the Difference between Keyword Tool and Keyword Planner Tool? -
Replied To a Post in mysql
http://dev.mysql.com/doc/refman/4.1/en/identifiers.html -
Replied To a Post in relational databases
`ExpenseType` in the first table should be the foreign key. -
Replied To a Post in oralce
What's the question? -
Replied To a Post in mysql to mysqli
https://www.daniweb.com/web-development/php/code/434480/using-phpmysqli-with-error-checking https://www.daniweb.com/web-development/php/code/462098/mysqli-binding-example -
Replied To a Post in Incorrect Syntax in SQL Query?? Help please!
You forgot brackets around `Test Name`. -
Replied To a Post in Difference between var $name and var name
LOL. True, but it's an allowed character for a variable, so why not use it if it can help identifying variables easily ;) -
Replied To a Post in RSS feed
https://www.daniweb.com/web-development/php/threads/37175/waht-is-rss-feeds
The End.