- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 10
- Posts with Upvotes
- 6
- Upvoting Members
- 10
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Re: "Life is either a daring adventure or nothing" - Hellen Keller | |
I think Im misunderstanding something here - I normally work in PHP and think I'm missing something small. My final array tmp is empty and displays as ",,,,,,,,,,,,,,,," . It seems to me my tmp array might be emptied somewhere or the scope gets reset for some reason. I'm using … | |
Hi guys, I was wondering if anyone can pin-point me to the right direction. I want to implement this css translate 3d effect does anyone maybe know of a resource(s) I can work through to do this? I've been searching for related content and haven't been able to find this … | |
Re: Do you get any php/db/js error? You can switch it on by adding this to the php file you're using -> `error_reporting(E_ALL); ini_set('display_errors', '0');` | |
| |
Re: Is there another form on the page with the same field name/ids? | |
Re: It could be your Glyphicons isn't setup correctly. Check the URL in the bootstrap.css leading to the Glyphicon file and that the files are actually in the directory. | |
Re: The videos can act as portfolio items and then on this page etc. University you'll have the ability to display all portfolio items to be arranged by latest release date. Problem is though you'll need to be sure that your wordpress theme supports a portfolio section and that you'll be … | |
Re: Use Session variables to store the cart items id's so everytime you load the cart you get the item details and display it. This is now if I understand you correctly in saying that when you move from page to page you loose your cart items? | |
Re: Hi - I've encountered something similar before and it was beyond frustrating especially when I didn't get an error aswell. Someone pointed out that it was indeed the file permissions and I was using FileZilla at the time. So I changed the folder's permission to where I'm uploading to 777 … | |
Hi everyone, I'm wondering about a potential problem I might get. My problem is lets say I have 2 tables one called **speakers** and **clients**. In the client table the client has the speaker ID's of 1,5,8(SAVED in a STRING field) - *so I'm using explode() to get the values*. … | |
Hi all, I'm not too familiar with Ajax but I believe I grasp the basics. So I'm sending an id which I retrieve from an element to a php page but I can't seem to retrieve the id being send. My javascript: function ListPart(part) { var imgdata = part; $.ajax({ … | |
Re: Wow it definitely seems like you 'tried'... | |
Hi guys, Can anyone please help me with this simple error. Jquery is not my strongest suite but I feel like this is something small that I'm missing. With the code below I get the error 'undefined'. html: `<a href='#' ><img src= "./images/1.jpg" width= '200px' id="2" rel="arm1" onclick = 'test()' … | |
Hi guys, Was wondering if you could help me please. So I have a list of menu elements from which I can drag elements into a div tag. This all works fine. But I'm struggling to replace the elements with each other. So say for instance I already have an … | |
Re: [This]( http://bootswatch.com/default/) is also quite nice | |
Re: The code seems fine to me. Just a quick question - are you testing it on an already live website or are you testing it via your localhost? | |
Re: Go check out this link...maybe it will help you [URL="http://stackoverflow.com/questions/108443/data-structure-for-assembly-code-research"]http://stackoverflow.com/questions/108443/data-structure-for-assembly-code-research[/URL] | |
Re: For problem 1: It could be that index 4 actually means that the max size is 5. Seeing as an index can start at 0. This can happen in line 2 where it looks for the index which isn't there. Not excatly sure how you can get an error in … | |
Hi! I have a problem with the unlink() php function. What I try to do is to delete a certain file in a directory. Now the function works fine. But when I call it then it deletes ALL the files inside of that directory. What I want is for it … | |
Re: Okay,in the Player function why do you return String[]? When you return a String it is just `return String`. When you return a Char that has more than one characters in then your return the array of characters it's not a array of string. Also don't make the function static. … | |
Re: Execute the code as the compiler would but do it on paper....Or you can use netbeans and use the 'break' function to step line by line through your code and see how the variable changes/updates. | |
Re: You should try changing the position from inherit to absolute! Then you would have much more control over the div tag. Like for example: #cd,new{ position:absolute; left: 15%; top: 20%; etc... } Hope this helps! | |
Re: There is a lot of neat javascript/jquery plugins you can download for free. And I know HTML 5 also supports a progress bar if you want to read up on that. But the ones you're going for would be like these if I understand you correctly: JS - http://s3.envato.com/files/2526201/index.html Check … | |
Re: Why would anyone want to help you if you ask/request it like that...Post **your** code that you're struggling with or show where you get errors in your code. | |
Re: If you make any function within that class pure virtual then you can't create a object of that class. If I understand you correctly or make the inheretence private like Ancient Dragon said. | |
Hi all! I have a problem which I can't seem to fix. I would like to know is it possible to send a normal JS variable to a php page. I've tried the following and nothing seems to work. <input type="submit" value="Bookmark" onclick="bookmark();"> function bookmark() { var pageNum = 2; … | |
Hi all! I have a problem that I've been struggling with for quite sometime. In short I've successfully parsed a xml file from a string. But I can't seem to access the correct elements. The thing is I'm reading the xml file data via javascript but in the xml file … | |
Hi guys Just wandering what your thoughts are some off the Samsung Andriod phones? I'm considering getting myself the Samsung Galaxy S2? Don't have the cash yet for the S3 - and is not yet launched in my country. | |
Hi all! I just have a quick question about the execution of a copy constructor. This is the code i'm testing my work with as I'm busy learning for a test. Class file: Clock :: Clock (int h, int m, int s) { hr = h; min = m; sec … |