Jump to content
Larry Ullman's Book Forums

Jonathon

Members
  • Posts

    1064
  • Joined

  • Last visited

  • Days Won

    55

Jonathon last won the day on August 31 2014

Jonathon had the most liked content!

Jonathon's Achievements

Newbie

Newbie (1/14)

255

Reputation

  1. The header.html file is included in a php file. So the server sees a php file primarily and hence executes it as php.
  2. toure probably referencing a directory incorrectly. Make sure the paths are all done and case sensitive.
  3. Why would an OOP system be more secure than a procedural one? I also think that Larry does explain his reasons for using procedural approach in the book btw.
  4. Over another framework or in terms of an actual project?
  5. Well these are my thoughts. I love my current stack which is probably the same as yours. PHP and MySQL. But I do always look at other places where learning a new language or skill set would be a good investment. I like the idea of apps for iOS and it's a fairly big undertaking to build an app when you don't have any experience in that or iOS. But I'm enjoying playing around with it and learning Swift. I hear loads of great things about Python and Ruby. More so than PHP. A lot of purists seem to see PHP as the devil it appears. I actually came across the article by googling node.js v Python as I wanted to use a more scripting orientated language for some reports on a JVM and PHP won't run on JVM. I think at some point web wise is like to learn how and when to use Mongo. But the reality here is how many of us are going to build something that needs to be that scalable. So I'll hold fire on that and hack my way through swift. Thanks as ever for your response. I'm glad we share the same opinions. Jonathon
  6. Jonathon

    The Modern Web

    Hi Larry et al As someone working in a startup in a big web company like stripe I imagine they are hot on technology and stacks etc. I was reading around on the web just about language comparisons/platforms like node.js and read a couple of people say things like PHP Ruby Python are not as relevant to the modern web. What the modern web is it doesn't say. What are your thoughts on that kind of statement? Out of interest. As someone who is fairly up to date with the web and technologies I'm always intrigued by people opinions on these things. I have started to work with swift. But I'm very new to it and can see the downside of concurrent requests using PHP for instance.
  7. Just Stripe checkout ones need to be HTTPS to be PCI compliant. Jonathon
  8. I always try to post things that people might be interested in. Like the digital ocean piece. So here is another. https://letsencrypt.org
  9. So what are you saying? THat the client is field should be pre populated wih existing clients? If so just pass the form a drop down box instead of text field and pass it the appropriate model. It will be something like this $model = Client::find()->all(); $dropDown = ArrayHelper::map($model, 'client_name', 'client_id'); Pass $dropDown to the form now. Job done
  10. When you load the page, put in a DB Call to increment the DB by one. Assuming you have a DB that stores every page you want to monitor. You can use MYSQL's ON DUPLICATE KEY to achieve this.
  11. Jonathon

    Closures

    Hi Larry In any of your PHP writings do you have anything on closures. I feel like you do in the JavaScript book. I'll have to have a look, but just wondering could you with your expert ability to explain things explain a closure. Thanks Jonathon
  12. Why not send both? I send html emails and I haven't noticed any major differences between clients. I think most companies send a html email now-a-days. Even if it's just a simple logo somewhere. Rather than a text based one. Yes I found mandrill great for what I needed. You'll have fun with digital ocean too if you go down that route
  13. SEOMoz is a good place to read about things. The guy who started it I forget his name has a book it will be a few years ago now. So I don't know if it's had new updates or what. I used to be really into SEO. But truth be told. If you had a semi decent HTML structure, ie it's actually valid HTML and good content that is updated regularly you're site will progress. Content is king.
  14. I do indeed and that is it. I was happy to learn more about command line too. Good thing is it's cheap to practice.
×
×
  • Create New...