- Strength to Increase Rep
- +12
- Strength to Decrease Rep
- -3
- Upvotes Received
- 494
- Posts with Upvotes
- 337
- Upvoting Members
- 133
- Downvotes Received
- 8
- Posts with Downvotes
- 8
- Downvoting Members
- 6
I am just a freelance web developer with both a design and programming background. I currently work full time for a technology firm.
- PC Specs
- Dell XPS 15, Windows 8.1, i7-4712HQ, NVIDIA GeForce GT 750M, 16GB DDR3L 1600MHz, 15.6-inch 4K Ultra…
Re: Drinking a Monster Zero Ultra and eating some almonds. | |
| Re: > Prefontaine was an old runner **@cproger** - My father went to high school with Steve Prefontaine in Coos Bay :) |
Re: You're missing an opening `<` on your submit button input. | |
Re: I found this jsFiddle that shows an example of data being passed to the bootstrap modal window, might be useful http://jsfiddle.net/Au9tc/605/ | |
Re: So you're just wanting `0.05 * pages * copies` then? Sounds pretty easy and doable. | |
Re: Look at your form action. `<?=((isset($_GET['edit']))?'?edit'.$edit_id:''); ?>` There's no equal sign there. `<?=((isset($_GET['edit']))?'?edit='.$edit_id:''); ?>` | |
Re: The URL does not change, and I'm pretty sure that the Facebook comments plugin associates those comments to a URL. | |
Re: In addition to what cereal said, have you tried outputting `tittle` and `content` to the console, just to be sure they are not empty there? | |
Re: You have a few different syntax errors in that code. Get into the habit of running your JavaScript through JSLint when you're having issues. It can save you time. *Redefinition of 'parent' from line 1.* var parent = $(el).closest("li"); *8.88Expected ';' and instead saw '$'.* var loading_gif = "<img width='24px' … | |
Re: What happens right after you login before entering the admin page? Does it show an auth error, a PHP error, Laravel error, blank page? You need to provide more details with your questions/problems. | |
Re: Like you've hinted at, loading a bunch of images can pose a problem. I think this would usually be handled using AJAX with a backend, that loads the images asynchronously. The JS script would use AJAX retrieve the image(s), and then push those images into the DOM as needed. This … | |
Re: The reason you're not seeing an array, is because the response is a string of XML data. From the XML file: `<s:element minOccurs="0" maxOccurs="1" name="GetQuoteResult" type="s:string"/>` What you can do is parse the xml data with simplexml to help create an array. <?php $wsdl = "http://www.webservicex.net/stockquote.asmx?WSDL"; $client = new SoapClient($wsdl); … | |
Re: I would rather have a random file name, or a file name I can control, than to use/trust the original file name that's been uploaded by someone. Unless you really really need to have the original file name, which would be pretty rare I think. | |
Re: You might want to create a new post with more **details**. This thread was solved 2 years ago, and your question does not have enough information. | |
Re: The old saying "You get what you pay for" comes to mind. I get my domains from a trusted registrar, and I get my hosting based on quality+reputation+price. A site with a couple hundred visitors a day should be fine on a shared hosting plan, as long as the site … | |
Re: Not really sure how stealing video content has anything to do with Web Development. | |
Re: The output is 27-10-15, which is exactly what you've requested (day - month - year). What date format where you trying to get? | |
Re: I don't really see anything wrong with the db design, might have done some stuff different, but it still looks okay. What you probably need is `GROUP_CONCAT` which will allow you to combine the genres for the movie into one cell. Then you would do a `GROUP BY Title` at … | |
Re: > This error show up even if I use the correct login data! Well, to be fair, that really isn't an error message. It's a message that you're echoing when `@mysqli_num_rows($result)` does not return a value of 1. So you know that it is at least making it up to … | |
Re: This works in IE, FF, and Chrome... [CODE] <input type="button" value="Close Window" onclick="window.close()"> [/CODE] | |
Re: Why even use the strong tag? Why not use another element like span and then just change it in CSS? | |
Re: Am I the only one that read that post in the voice of one of those guys on those late night commercials, trying to sell their 3 step plan to wealth? | |
| Re: I use Brackets and Notepad++, I like it nice and lite. |
Re: Peronally, I would like to see a quicker turn around on email alerts for updated threads on a regular basis. Most of the time I won't see an email notification up to 30 minutes or more after a thread had been updated. | |
Re: > Have you ever been in a fight Yes, more than I can count. In my early years of life, I was a confused kid, with very little guidance. I found myself in some very bad situations, that resulted in many bad endings. I was once in the hospital for … | |
Re: Once you have purchased a domain and hosting somewhere, there are a number of instructions online for moving a Wordpress site from your localhost to your live site. Doing it with the help of a Wordpress extension http://premium.wpmudev.org/blog/guide-to-migrating-localhost-wordpress-to-live-site/ Full steps for moving your Wordpress site https://codex.wordpress.org/Moving_WordPress | |
Re: Well `$_SESSION` isn't a function, it's an array. It should be called like `$_SESSION['value']`. AND `session_register` has been deprectated in 5.3 and removed in 5.4 | |
Re: Apply Discount to PayPal Buy Now Button https://www.youtube.com/watch?v=VIGdfsxA3fM PayPal Coupon Code for PayPal Standard https://www.youtube.com/watch?v=4Y6EcOM_F10 | |
Re: Why?!? ?> Thank you for contacting us. We will be in touch with you very soon. <?php } ?> | |
Re: Or one could urgently ascertain this their self. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img |