SciActive

  • Increase font size
  • Default font size
  • Decrease font size
Home Articles
Articles

Serialized PHP Editor

E-mail Print PDF
User Rating: / 1
PoorBest 

SciActive just launched a Serialized PHP Editor. It allows you to easily edit serialized PHP data.

If you store values in a database using PHP's serialize() function, then this tool is a must have. When you edit your database, you won't have to use any PHP to unserialize and edit your data. You can edit all your data using indented YAML or JSON. It's a much easier way to edit data.

Pines stores its data in databases using serialize(), so if you use Pines, now you can edit your data from the database much more easily.

If you have any suggestions for new features, please leave a comment.


Read 0 Comments... >>
 

jQuery Element Sorting

E-mail Print PDF
User Rating: / 2
PoorBest 

I recently needed to sort div elements in the DOM by a timestamp in child divs. After searching for a while and finding no jQuery style solution, I figured out an easy way to do it, the jQuery way. Here is the code:

// Sort by timestamp.
$("#timeclock_edit").prepend($("#timeclock_edit div.element").get().sort(function(a, b){
    return $(a).find(".timestamp").text() - $(b).find(".timestamp").text();
}));

The code grabs an array of DOM elements, sorts it by comparing the text in the timestamp element, then prepends that to the parent div. The way this is coded is not very flexible, but it could be expanded easily.

	

Read 0 Comments... >>
 

Pines Form Styles - Clean CSS Design for (X)HTML Forms

E-mail Print PDF
User Rating: / 18
PoorBest 

pform-exampleCSS form design was plaguing me for a while in the Pines project. After searching the web for a couple days trying to find a good CSS design for HTML forms and finding only designs full of hacks/Javascript workarounds or designs too ugly and/or restrictive to be considered, I set out to design my own near flawless, flexible, featureful, standards compliant, and cross-compatible form design to suit the needs of the Pines project. Pines Form achieves this goal.

This design has been tested and works in the following browsers:

  • MS Internet Explorer 5.01 and higher
  • Mozilla Firefox 1.0 and higher
  • Apple Safari 3 and higher
  • Opera 8 and higher
  • Google Chrome 2 and higher

Read 3 Comments... >>
Read more...
 

Acid Test Results on Popular Browsers

E-mail Print PDF
User Rating: / 51
PoorBest 
This article has been given its own category. Click here.

Read 6 Comments... >>
 

Operation Domination: Windows, Linux, or Macintosh

E-mail Print PDF
User Rating: / 2
PoorBest 

By Hunter Perrin - 5/05/2005

You just got a brand new computer or built one yourself, and now it's time to decide on an operating system. This article will list the good, the bad, and the ugly points of the three major operating systems.


Read 0 Comments... >>
Read more...
 



Advertisement