[QUOTE=AzzyMaster;32610941]What is a good php MVC framework you guys could recommend?[/QUOTE]
All recognized frameworks are "good". It just depends on what you need.
I recommend Code Igniter. The only framework I've used.
Just wasted about 15 mins or so, on something that may scare you. And me. And make turb potentially scream out in terror when he sees this.
[url=http://deep-winter-1975.herokuapp.com/]http://deep-winter-1975.[B]heroku[/B]app.com/[/url]
[QUOTE=a2h;32616669]Just wasted about 15 mins or so, on something that may scare you. And me. And make turb potentially scream out in terror when he sees this.
[url=http://deep-winter-1975.herokuapp.com/]http://deep-winter-1975.[B]heroku[/B]app.com/[/url][/QUOTE]
NO WHY
Isn't Heroku for Ruby? aaaaa
[QUOTE=TehWhale;32617414]Isn't Heroku for Ruby? aaaaa[/QUOTE]
They've added support for Node.js, Java, Scala, PHP and Python over the past couple of months.
why would you use a shit language like php on heroku WHY
[QUOTE=anton;32617559]why would you use a shit language like php on heroku WHY[/QUOTE]PHP is not shit if you use it correctly.
[QUOTE=Known Havok;32617949]PHP is not shit if you use it correctly.[/QUOTE]
Except 99% of the time it's used incorrectly. Not to mention there are fundamental things wrong with the language itself.
[QUOTE=Jelly;32618148]Except 99% of the time it's used incorrectly. Not to mention there are fundamental things wrong with the language itself.[/QUOTE]
I hear this now and again, but haven't learned from other developers what they meant. Could you explain?
[QUOTE=amcfaggot;32618253]I hear this now and again, but haven't learned from other developers what they meant. Could you explain?[/QUOTE]
Most of the functions are a clusterfuck and don't follow a certain ruleset. str_replace($search, $needle, $haystack); then you have strstr($haystack, $needle); Stupid things like file(), which opens a file and splits all new lines into an array, which instead it should act like file_get_contents().
[QUOTE=Jelly;32618308]Most of the functions are a clusterfuck and don't follow a certain ruleset. str_replace($search, $needle, $haystack); then you have strstr($haystack, $needle); Stupid things like file(), which opens a file and splits all new lines into an array, which instead it should act like file_get_contents().[/QUOTE]
Those are inconveniences, bad choices with the core library, if you want actual things wrong with the language, take its closures, for example, or the tacked-on OOP support which is only now being improved (since PHP5.3).
Despite that, it's still a solid language, and super fun to work with.
[img]http://puu.sh/6v98[/img]
This is in a browser.
The only images are the noise in the background and the slight glow as well.
Been working on this for a fair bit, I like the end result. It's a remake of a PSD I found.
Here is the PSD for comparison:
[img]http://puu.sh/6v93[/img]
[QUOTE=RusselG;32620478][img]http://puu.sh/6v98[/img]
This is in a browser.
The only images are the noise in the background and the slight glow as well.
Been working on this for a fair bit, I like the end result. It's a remake of a PSD I found.
Here is the PSD for comparison:
[img]http://puu.sh/6v93[/img][/QUOTE]
who did you skim that one off?
Everything you've made has been a mashup of code you've found/stolen/borrowed on the internet. Pardon my skepticism.
[QUOTE=Jelly;32621072]Everything you've made has been a mashup of code you've found/stolen/borrowed on the internet. Pardon my skepticism.[/QUOTE]
That is true, got the hang of CSS/HTML now.
[url]http://summerglaufc.org/you/guise/over/at/fp/are/so/critical/login/[/url]
Play around with it, critisize it.
[QUOTE=RusselG;32620930]You serious? I actually made this myself, but as any normal designer would, I used the colorzilla gradient maker for gradients, basing the design from [url]http://www.premiumpixels.com/freebies/clean-simple-login-form-psd/[/url]
You can easily tell it was by me because every part of the code is messy, and the code is below.
[code]
stuff
[/code]
If you mean "Make something yourself for once" as in an original design, then whatever, but I made this from scratch.
But I can actually assure you guys I made this. I am doubting you guys realised I learnt from my lessons before.[/QUOTE]
Having actually spoken to you and witnessed how childish you can get, I highly doubt that.
[QUOTE=TerabyteS_;32621135]Having actually spoken to you and witnessed how childish you can get, I highly doubt that.[/QUOTE]
I can't even remember what happened last time we talked, but it was ages ago.
Times change, don't they?
[QUOTE=RusselG;32621155]I can't even remember what happened last time we talked, but it was ages ago.
Times change, don't they?[/QUOTE]Hopefully.
Anyway, I need to find a way to make qfi.im known to more people. Right now it has a Facebook Page, twitter account and there are a few posts about it on various downloading forums (not posted by me).
What's the next step on the line?
[QUOTE=TerabyteS_;32621249]Hopefully.
Anyway, I need to find a way to make qfi.im known to more people. Right now it has a Facebook Page, twitter account and there are a few posts about it on various downloading forums (not posted by me).
What's the next step on the line?[/QUOTE]
I'd say a Steam group, to make announcements about the site, etc.
[QUOTE=RusselG;32621256]I'd say a Steam group, to make announcements about the site, etc.[/QUOTE]
What? That's like putting an ad for a computer parts in a cooking magazine.
[QUOTE=Jelly;32621276]What? That's like putting an ad for a computer parts in a cooking magazine.[/QUOTE]
Yeah, but a more relevant comparison would be a member's club in a game store for people who pirate games.
Not saying that's all qfi.im is used for, there's plenty of midget porn in the recently entered page too or was last I looked. :v:
[QUOTE=Jelly;32621276]What? That's like putting an ad for a computer parts in a cooking magazine.[/QUOTE]
A lot of sites actually do it, and quite a few people on FP know about qfi.im, and most, if not all, have Steam. The strategy is that you get FP people in the group, they invite friends, who like the service, then they invite, etc.
If i wanna do a alertbox that verifies that the user really wanna do somthing they just klicked on, like submiting a form or the like, how should i do it?
[img]http://i.imgur.com/h7JT5.png[/img]
Not quite finished yet.
[QUOTE=TBthegr81;32621631]If i wanna do a alertbox that verifies that the user really wanna do somthing they just klicked on, like submiting a form or the like, how should i do it?[/QUOTE]
Javascript:
[php]
function confirmDelete(url, string)
{
string = (typeof(b) != 'undefined') ? string : 'Are you sure?';
var agree = confirm(string);
if (url && agree) { document.location = url };
}
[/php]
HTML:
[code]
<a href="/this/is/the/link" onclick="confirmDelete(this.target.href)">Delete me!</a>
[/code]
[editline]4th October 2011[/editline]
This is better: [url]http://stackoverflow.com/questions/2665413/javascript-confirm-delete-in-one-php-file-on-href[/url]
You know what's fucking backwards? Having to use tables for layouts in HTML emails.
* You know what's fucking backwards? HTML & CSS rendering in email clients.
[QUOTE=KmartSqrl;32625464]* You know what's fucking backwards? HTML & CSS rendering in email clients.[/QUOTE]
For some odd reason, gmail's one of the worst offenders at this.
Sorry, you need to Log In to post a reply to this thread.