-
Replied To a Post in help with this scrap please
Well then cut_str() hasn't been defined, and you therefore cannot use it. Look at Cereal's first reply to this thread, he's covered the method you need. -
Replied To a Post in help with this scrap please
Are you using a PHP framework like CodeIgniter or anything similar? -
Replied To a Post in help with this scrap please
Please post all of the code in the PHP file :) -
Began Watching Linked List Manipulating strings
I'm new to C and I i have an assignment where I have to build a dictionary (Linked List). Basically the user inputs several words,year and their definitio likn this: … -
Replied To a Post in Linked List Manipulating strings
>Any help? You'll have to be more patient, please wait more than simply 4 hours before bumping like that. Give it at least 24 hours, as some people aren't in … -
Began Watching Happy 2014 :)
Happy New Year Everyone :) -
Replied To a Post in Happy 2014 :)
>Happy New Year! (in advance or belated, depending on where you are!) Belated, seeing as we're UTC+13. Here in New Zealand we're 175°E-ish so 5° of longitude away from being … -
Began Watching help with this scrap please
Hello, i have this code for extract the categories of the movies in one site: <?php $jm_anime_genero = cut_str($pagina, '<tr> <td width="133" align="right" valign="top">Genero : </td> <td width="329" align="left" valign="top">', … -
Replied To a Post in help with this scrap please
The cut_str() isn't included in the standard PHP installation, it's probably been written by you or someone else, in a PHP source file. Nobody else has a copy of this … -
Began Watching Deprecated: mysql_connect(): (problem)
Hi I'm facing this error : Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /var/www/core/inc/config.php on line 7 … -
Replied To a Post in Deprecated: mysql_connect(): (problem)
>how can I hide this error!? You really should use mysqli_* or else one day in the future when you upgrade PHP, your code will just stop working, and you'll … -
Gave Reputation to pritaeas in Synaptics touchpad suddenly stopped working
> We all want to show our gratitude for the post Because it adds nothing of value to the thread. If you want to thank the one who gave you … -
Began Watching Updating tuples
Hi Is there any possibility to update tuples dynamically(in a :for loop" say) Else is there possiblity to dynamically create a new tuple? Thank you in advance -
Replied To a Post in Updating tuples
You can sort-of dynamically create tuples, for example: name = "Jim" last_name = "Beam" mytuple = (name, last_name) However, you'd not be able to dynamically change the size of a … -
Began Watching Weird mySQL sysntax error in VB.NET
HELLO! I've been debugging my code for an hour now. seriously. So I have this string: SQLString = "UPDATE `etmsystem`.`main` SET `timeIn` = '22:00' WHERE `main`.`serialNo` = '70002B4A8F9E'" actually the … -
Replied To a Post in Weird mySQL sysntax error in VB.NET
A whole hour? That's nothing ;) But seriously, good on you for soliving the problem yourself and posting the solution for others. -
Began Watching program star triangle with assembly...?
*how program to display this triangle??? >_<* > ***** > **** > *** > ** > * > * > ** > *** > **** > ***** (just the triangle..) -
Replied To a Post in program star triangle with assembly...?
We don't do your homework for you. Show some effort of your own toward solving the problem before simply demanding code. -
Began Watching how to buy my first guitar
I want to buy my first guitar and I don't want to spend much money in the very beginning as I don't know how to handle it and all those … -
Replied To a Post in how to buy my first guitar
>Go to a decent store selling musical instruments I second this. I had a cousin who picked up a $60 electric guitar + amp package from what was basically a … -
Began Watching open file-write on file+save file+close file
hi everybody I have a project that I teach machine language source code: Open the file Writing to a file Save File I have to leave the files on the … -
Replied To a Post in open file-write on file+save file+close file
>Can anyone help me? You can help us help you by asking your question more clearly and first showing some effort towards solving the problem. -
Began Watching take upper limit from user
blease any one can help me to write an assemply program that which take upper limit value from the usser and count down alos separate odd and even value whiling … -
Replied To a Post in take upper limit from user
You agreed to [these rules](http://www.daniweb.com/community/rules) when you signed up. I'll quote from that very page: >Do provide evidence of having done some work yourself if posting questions from school or … -
Began Watching vi or nano
Hi all, What is the difference between vi or nano for editing a file? In your own opinion? I always used vi for editing files but some people say it's … -
Replied To a Post in vi or nano
Ohh crap, here we go with a potential flame/argument/back-and-forward/opinion thread. Oh well, it's been civilised so far, let's keep it that way. I've used both `vi` and `nano` and prefer … -
Began Watching Creating bare metal utilities and OS
Which compiler must I use to create ?: 1. Bare metal utilities. 2. My Operating System. -
Replied To a Post in Creating bare metal utilities and OS
>I think you can use any compiler which has the ability modify the linker, GNU's compiler has linker scripts which controls this important aspect. No, no, no, no, don't make … -
Stopped Watching Don't drink and drive
http://www.youtube.com/watch?v=zfvPPPc_UTs -
Began Watching Don't drink and drive
http://www.youtube.com/watch?v=zfvPPPc_UTs -
Replied To a Post in Don't drink and drive
>they can increase the tax on it. Thus penalising everyone for a minority's mistakes? -
Began Watching c programming questions
Through programming experiment prove your claim for float storage format? -
Replied To a Post in c programming questions
In case you don't get it, what deceptikon is talking about is the homework policy. -
Replied To a Post in Bad Grammar
>how should i do and what should I do ? What others have said: get some grammar books, read through them. As with any language, you basically have to eat … -
Began Watching Arrays in C++
##Why Use Arrays?## Let's begin by considering why arrays might be needed. What is the problem that this feature solves? How does it make your life as a programmer easier? … -
Replied To a Post in Arrays in C++
Nice tutorial deceptikon, I very much like the style. I used to have teachers who would try and teach the class something new without first setting a scene of what … -
Began Watching Trying to get file size and inputing it on a int stack
cout << "Enter the filename " << endl; cin >> filename; inFile.open(filename); int length = 0; while (inFile) length++; IntStack stack(length); I keep getting an error and I have no … -
Replied To a Post in Trying to get file size and inputing it on a int stack
Actually, I just noticed one of your other threads, where someone links to the example code snippet on [this page](http://www.cplusplus.com/reference/istream/basic_istream/seekg/) for getting a file's size. -
Began Watching Trying to get file size and inputing it on a int stack
cout << "Enter the filename " << endl; cin >> filename; inFile.open(filename); int length = 0; while (inFile) length++; IntStack stack(length); I keep getting an error and I have no … -
Replied To a Post in Trying to get file size and inputing it on a int stack
Basically, you're incrementing a variable while inFile is true: while (inFile) length++; Inside your loop, there's nothing which could possibly change the value of inFile to false, thus the loop … -
Began Watching Trying to get file size and inputing it on a int stack
cout << "Enter the filename " << endl; cin >> filename; inFile.open(filename); int length = 0; while (inFile) length++; IntStack stack(length); I keep getting an error and I have no … -
Replied To a Post in Trying to get file size and inputing it on a int stack
What do you think is going to change inFile's boolean state to quit the loop? -
Began Watching Bad Grammar
I can't take it anymore. At first it was only occasionally. Now it seems that every time I turn on the TV someone else is doing it. Doesn't our school … -
Replied To a Post in Bad Grammar
>I ain't an expert in grammar either, although I fancy myself a connaisseur. That is quite possibly the most hilarious way I have heard the words fancy, myself and connaisseur …
The End.