ajnoguerra
-
Can flash apps work on iphone, ipad, ios devices?
Alright, I think I had enough ideas about it. Thanks for helping me out @Paulie_D
-
Can flash apps work on iphone, ipad, ios devices?
Can animation be created using XCODE on IOS (like how jquery is applied and behave in websites) ? Are they similar in creating an interactive application? The problem is, my boss keeps on hiring flash developers to do a game app for IOS platforms,…
-
Introduction to Mobile Websites. Please help.
Thanks @JohnMotylJr! That helped a lot. I have another thought to clarify, you said that m.website.com is a sub domain and to achieve its usability I need a server side redirect or js to detect mobile devices, right? But is it also possible that I j…
-
Create a condition between SAVE and SAVE&PUBLISH
Wow. Thanks @traq for the effort of giving all these knowledge. I think I need a lot of reading deep about php and mysql. As I see it, I'm still on the very basic stage. I will be reconstructing my code again and shall apply what you have menti…
-
Create a condition between SAVE and SAVE&PUBLISH
I was hoping that you'd answer my question, I know you're great with this :) Here's what I got @traq. // CHECK IF THE FORM WAS SUBMITTED if( isset( $_POST['save'] ) ){ …
-
Please help mysql - ORDER BY Date Desc
Oh goodness! How crazy of me. I must have overlooked some of my researches about it. SELECT `title` , `text` , `date_time` FROM `post_table` ORDER BY date_time DESC LIMIT 0 , 30 @DanielMortzen - Yes my date_time field is actually DateTime type. I…
-
How do I keep or retain my form values even if the form has been submitted?
Thanks @traq for that. I just wonder, Should it output any error if there is no validation used? I got the idea from your code. I just used the isset to check if the form was submitted then declared my variables and used them as field value. Will I…
-
text formatting in textbox
Oh my God. That is the most amazing thing I ever discovered today! That's brilliant @CrocoDillon! Thanks for the help! :)
-
The right approach to web design and web development
Wow! This is a great thread so far. Its nice to realize that I am not the only one experiencing or has experienced this. All of you guys shared great words :) and I'm very thankful for that. Actually, its not just web design and web development…
-
The right approach to web design and web development
Thank you for all your replies so far. I just had a bad day. Probably one of my Boss' April Fools' episode. His specialty is under industrial design, print and branding. He doesn't know anything beyond basic html coding. Whenever we t…
-
Portfolio design assignment
You are almost there buddy! You've done a great job so far. Let me just suggest a couple of things, maybe if you could minimize or tone down the color of your headers as it comes a little too bright in black background. Also you can use web fo…
-
Link/ Use Premium fonts from Typekit or Webfonts. Help!
@chrisburton @TheDoc @Paulie_D @Jamy_za Solved the problem myself. I wasn't looking for any hack. I was just trying to understand how typekit works. This website that I was talking about has been passed to me by the client them self. They were…
-
Loop through dates
$date = new DateTime(); // Without argument: now $interval = new Dateinterval("P1D"); // Period: 1 day for ($i = 0; $i format("Y-m-d")."\n"; $date->add($interval); }
-
How do I get each value of an array and put it in separate variables.
@CrocoDillon, what you posted recently was correct. I actually forgot to mention that I fetched the values of the array from a database field and used "explode()" function to reference them individually. This is actually the output when I …
-
How do I get each value of an array and put it in separate variables.
Actually got an answer for this problem. :D $selectbirthday = array ( [0] => 1946 [1] => 6 [2] => 10 ); $resultyear = $selectbirthday[0]; echo $resultyear; output is: 1946
-
How to write a simple HTML code inside PHP echo " ";
@traq, I'm glad you're really trying to help me. Here's the output >>> swap image
-
How to write a simple HTML code inside PHP echo " ";
@traq, Sorry if I sound a little confusing. The pure HTML markup with a little javascript I posted does a "swap image". The small/thumbnail images when clicked , a bigger version of that image will appear below. But then when I try to rew…
-
New website colors feedback
It's good to see that you got nice positioning in your website, just a little furnishing and your site will do great. :) Try to pair light and dark colors as well to add balance to your site and nice color view for your viewers, here's som…
-
How to write a simple HTML code inside PHP echo " ";
Thank you for all your answers ( @Rai, @traq, @AndyHowells ). One problem that I keep on encountering with that code is the pure html works and does swap image but when I try to incorporate it inside PHP, it doesn't work anymore. That is why i&…
-
How to make a floated image act responsively?
I've been cracking my head trying to figure this out for the past weeks. Thank you for that neat code @David_Leitch. Happy New Year everyone! :)