Skip to main content

Home/ PHP Programming/ Group items tagged useful

Rss Feed Group items tagged

melvinahebert

Best Demat Account For Small Investors | TechQY - 0 views

  •  
    Full-service brokers with extensive technical proficiency and support, such as Kotak Securities, is highly recommended for beginners. This is because of their expertise and years of guidance in the field of trading that can provide you with immense knowledge and customer service in your trading journey. Let us look into the parameters and factors to help you decide the best Demat account for your investment.
clariene Austria

Develop seo website - 3 views

We know how expensive websites can cost. And we know how expensive SEO can be. We don't want you to get into overdraft to get a website, but we don't want to design a low quality website as well. S...

lead generation seo web design

started by clariene Austria on 08 May 12 no follow-up yet
clariene Austria

Seo web designer - 1 views

If your website is not being listed on search engines, then you're missing out on a lot of business. Google has already overtaken yellow pages when it comes for searching for local business provide...

started by clariene Austria on 09 May 12 no follow-up yet
clariene Austria

Seo web designer - 0 views

If your website is not being listed on search engines, then you're missing out on a lot of business. Google has already overtaken yellow pages when it comes for searching for local business provide...

started by clariene Austria on 09 May 12 no follow-up yet
cafe software

Better Control of My Sales and Inventory - 2 views

I did not imagine using a cafe POS system can be a turning point for my business. Everything is transparent and clear. I can track everything from how many glasses of wines I sold down to how many ...

cafe pos point of sale

started by cafe software on 28 Mar 12 no follow-up yet
Restaurant System

Advance Service and Support - 2 views

I am a restaurant owner. I personally love food and I love people and I want to make them happy by providing them the best service ever. I always make sure to give them only the best. I want to tha...

restaurant POS

started by Restaurant System on 28 Mar 12 no follow-up yet
Wordpress Designer

Excellent WordPress Developers - 1 views

WordPress Designer offers their team of professional and creative artists who excel-lently designed my wordpress site. They did not only give emphasis on the design that can help me maximize my eng...

programming web development webdesign php design wordpress developer

started by Wordpress Designer on 28 Mar 12 no follow-up yet
clariene Austria

Don't Just Get A Website… Get Discovered! - 3 views

If you're not being found on the search engines, then it's likely you didn't have an SEO web site design. A lot of web designers out there know how to make great looking websites that Google can't ...

started by clariene Austria on 30 May 12 no follow-up yet
spymek soft

Tap Tap Words - 0 views

  •  
    A simple, addictive and informative game where you can learn words with the meaning and improve your vocabulary.
  •  
    A simple, addictive and informative game where you can learn words with the meaning and improve your vocabulary.
clariene Austria

Don't Just Get A Website… Get Discovered! - 2 views

If you're not being found on the search engines, then it's likely you didn't have an seo website design. A lot of web designers out there know how to make great looking websites that Google can't s...

started by clariene Austria on 04 Jun 12 no follow-up yet
lemike

PHP: rfc:isset_ternary - 0 views

  • The short ternary operator, ?: provides a way to do this much more conveniently: $_GET['mykey'] ?: "". However, this is not good practise, as if the value does not exist it will raise an E_NOTICE.
  • The coalesce, or ??, operator is added, which returns the result of its first operand if it exists and is not NULL, or else its second operand.
  • chained
  • ...3 more annotations...
  • precedence relative to the ternary operator and the boolean or operator
  • short-circuiting operator
  • PHP 7
  •  
    In PHP7 you can use $foo = $_GET['x'] ?? 'default_content' which raises no notices if $_GET['x'] is not set
Sarah HL

Changelog | symfony | Web PHP Framework - 0 views

  • Updating Doctrine to 1.0.12
  • fixed form field render method so widget schema id format is applied
  • fixed missing div in admin generator used in css styles
  • ...4 more annotations...
  • upgraded lime for symfony 1.2.x
  • fixed PHPDoc
  • fixed doctrine form filter when the table method returns a query with a different root alias
  • Fixed case-insensitive check of sf_method routing requirement
sloansteddi

How to use PHP and PEAR MDB2 (Tutorial) | David and Katherine Goodwin - 0 views

    • sloansteddi
       
      Prepare takes the $sql (with '?'s where data will go), along with the TYPES (array) of data to prepare the sql for, and a 3rd paramater for manipulating or result-getting (see next paragraph). It assigns this to $prepared_statement. Another array is created with the data (in the same order as the types, of course), and the RESULT is aquired by running the execute() method on the $prepared_statement object, passing the execute method the "$data" array to fill in the '?'s After this do everything as normal.
  • column = ?
  • id = ?
  • ...1 more annotation...
  • I have a feeling that MDB2 lower cases all field names - so you'll probably need : echo $row['name'] A good idea would be to print_r($row) or similar, to see what's in it
  •  
    A great walk through on getting started with MDB2
Raúl - [^BgTA^]

FirePHP - Firebug Extension for AJAX Development - 0 views

  •  
    FirePHP enables you to print to your Firebug Console using a simple PHP function call.
  •  
    Usa firebug para depurar PHP.
jdr santos

AjaxCRUD.com - Use PHP & AJAX to CRUD from a mysql database (create / read / update / d... - 0 views

  •  
    AjaxCRUD is an open-source PHP API which allows you to connect to a mySQL database and easily perform the necessary CRUD operations (create, read, update, & delete rows).
Sarah HL

Rasmus Lerdorf: PHP Frameworks? Think Again. - 0 views

  • Rasmus Lerdorf is the creator of PHP and still continues as a core developer to the PHP project.
  • heavy Twitter mashup that he created. This does a lot of database calls and a lot of behind the scenes work. By hand-tuning it he was able to get on the order of 280 req/sec.
  • "Any script based language is simply not fast enough".
  • ...2 more annotations...
  • So, are there any frameworks that don’t suck? Rasmus did mention that he liked CodeIgniter because it is faster, lighter and the least like a framework.
  • It all starts with “I don’t need a framework.” 2. Then you create 7 classes. 3. Now you have a small library of classes. 4. Then you create an application that uses your library. 5. It works and it’s fast, hurray! 6. Then someone asks you to extend the functionality of your application. 7. And they keep asking for more, and more, and more and more… 8. Now you have 43 classes. 9. You’ve learn so much in the last 2 years. Design patterns, security, performance, testing… 10. What once was a small library is now a big, ugly, un-tested, un-documented, scary framework. 11. Then you change jobs. 12. And you create another 7 classes… This has been happening for the last 30 years.
Sarah HL

Serious Form Security - 0 views

Steve Programmer

PHP regular expressions examples - 0 views

    • Steve Programmer
       
      What a great regular expression.  I'm using this for my xml parsing script i'm writing.
« First ‹ Previous 101 - 120 of 135 Next ›
Showing 20 items per page