" data-bs-original-title="" title="">
Coda was alright, until they released Coda 2. I use Sublime Text 2 - Great editor :)
Hello there. It appears that some other people are having the same problem with you and the forums. Weird. I like Arduino but have you tried Raspberry Pi? Welcome to the forums :)!
Are there multiple text fields for the values? Or, are the values entered like: 1234567 OR 1, 2, 3, 4, 5, 6, 7
Hello, I believe what you're doing here is wrong: list.erase(std::unique(list.begin(), list.end(), list.end())); It expects a function (boolean) rather than the end of the list (vector). In this case, you could try this: bool compare (string i, string j) { return (i==j); } list.erase(std::unique(list.begin(), list.end(), compare); Source: [Click Here](http://www.cplusplus.com/reference/algorithm/unique/)
Hey, Could you please tell us what features that you have already implemented (or planning)? From here we can then advise you on what else you could implement. Or a brief descrption of your proposal. Cheers
@shivani1515 > So any one can get me some ideas for it without use of any specific sdk or dlls You need to understand how complex such a task would be, and since you're asking if it can be done with PHP I can only assume that you do not …
This is an introduction forum so probably not the best place to ask this question. You can ask this question in the "Networking" forum. Is the router kicking out the same NAT IP for the Kindle and therefore when it tries to connect to the laptop, it kicks it off? …
Why not have an array of theme colours ("colors") and then people who have bought subscription can then use a hex code to have any colour of their choice? :D just throwing it out there!!
What is this: $p['username'] What are you trying to do here? I think you're getting confused. Where are you defining your class variables? Show these :)
What is the problem? We cannot help you, if you do not tell us what is wrong.
I think this feature is more vb boards and wasn't implement in the new build. I don't think it's needed, personally, I find it annoying when people know you're online.. Sometimes I got: "You're online, I can see it but you're still not replying to m thread" awkward.
Hello, I don't want to look like I am following other forums, but, wouldn't it be a good idea for users (with a certain amount of rep) to have basic moderation tools, or, atleast the ability to edit posts by users and: 1) The person who posted can accept this …
I'm not an expert in VB.net and I am not entirely sure on the nature of this question. If you had let's say someone paid today, then you can do a calculation to check to see if someone has paid a month after this particular day. It would require basic …
Hey, I have a function in C that I am trying to convert over to C++. I have done everything, apart from this line: memcpy(mel[i],&temp[melstart[i]],mellength[i]*sizeof(double)); I need a way of copying the elements in temp[melstart[i]] over to a vector of doubles.. Here is the C code: void Setup_Mel(int fft_size, int …
First off: void main( ) that's bad, you should use int main() This is also bad: for (int x = i; x < 50; x++) you shouldn't implicity hard-code these values, it should be the SIZE of the array and not 50 (even though your array length is 50) .. …
Hey, Try this: <?php $node = node_load(arg(1)); $type = $node->type; if(substr($_SERVER["REQUEST_URI"], 0, 13) == '/our-people') { return true; }else if(substr($_SERVER["REQUEST_URI"], 0, 13)) { return false; }else{ return in_array($type, array('3_column_interior_page', '3_column_faculty_bio_page')); }
Yes, you can do. Store the values inside an array, then send the reference (pointer) of this array to a function that checks to see if the value is unique. (You can even construct a temp array to store the unique values inside) then you can print these to a …
Hello, Yes this is possible - But, you need to be specific in what it is exactly you want to do, and, what language you want to do this in. Let's look at what you will need (IMO): - The router you have needs DHCP turns off. - The router …
PHP works in paraelle / conjunction with HTML so essentially you will use it along side it, not "develop a new site using php". If you're using a "Hosting" provider, then, they will tend to have PHP/MYSQL installed on their servers, however, if you are using your own computer then …
This is not complicated at all, THINK about it! 1) Input values into an array that are above "0": input = {1, 2, ..., 2, 3, .. 9,> 0}; 2) Check to see if input (at the given time) is "0" if this value is not greater than 0 then …
Hey, Is this to do with image recognition / Object recognition? Do you have any code to show, where it fails...?
You can't pass the vector as an array.. Your problem is here: void counter(vector<int> count[]); Do this: void counter(vector<int> &count); // sending reference Also, you can't allocate memory for a vector like this: vector<int> list[5]; Instead you can do this: vector<int> list(5, 0); // size of 5, pushes back 0's …
I believe you can use LIKE... SELECT username FROM users WHERE username LIKE 'John'
Why are you not using a more Object Oriented approach?
Hey, I don't think you can do this.. I'm guessing your database information is in the file, so therefore, the connection code needs to be there as well. $connection = mysql_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD) or die('Oops connection error -> ' . mysql_error()); mysql_select_db(DB_DATABASE, $connection) or die('Database error -> ' . mysql_error()); …
> http://www3.uic.edu.ph/images/100x102/1242343.jpg Doesn't exist, or, you do not have permissions to access it. Please can you vardump / echo $complete... Also, what does "file" do? :S
Your first problem is you delcare a constructor (in your .h file) but you don't reference it in the class functions (.cpp)... So put this: Burger::Burger() { } Your other problem is the fact you don't tell the compiler where the functions are (in which class) you declare an object …
This is weird. What compiler are you using? Haven't posted an actual thread here, in a while, but, should this really be a code snippet? your not submitting one, just a question -looks over there >>
Couldn't you just have a count set to = 0 at the beginning and each time a value get's inserted into the array, it increments by 1? Or, if you just need to know whether someone has entered something - Have a Boolean? Here's an example anyway: #include <iostream> using …
Hey, you need to use sessions (http://www.w3schools.com/php/php_sessions.asp) . So for example, if you have a "login" script, you can define these values and then create a script that only restricted members can access
Women, mostly. And forums like DaniWeb. Oh, and errors. Errors distract me a lot, I can get really annoyed and then leave it for up to a week sometimes.. It's bad!
Why do you study? What can you possibly learn from people answering these questions, therefore, what is the point of this task? My advice: LOOK at Exercise 6 etc.. and LEARN!
I don't think you quite understand Polymorphism. Can you show the class definitions please? Also, explain what it is you're actually trying to do..
The End.