Posts tagged tutorials
PHP LiveX – Enrich your applications with ultimate php-js interaction
0PHPLiveX is a lightweight php-javascript class library that helps you integrate AJAX into your PHP applications. Without a page is loaded again, you may call your PHP functions in the same page, submit your form to an URL and send a request to another page.
You may also upload files via Ajax with progress bars. It was specially designed to ensure smooth work of PHP based websites.
Features of PHP LiveX :
- Lightweight with one class library
- Call your PHP functions and class methods from JavaScript in one line
- Send forms and Ajax requests to an URL
- Easy dom manipulation via Ajax response
- Show your custom preloader during the process
- Pass your objects and arrays between PHP and JavaScript each other
- Use browser history buttons to navigate in your Ajax based content
- Upload files via Ajax with your own custom progress bar
- Website: http://www.phplivex.com/
- Demo: http://www.phplivex.com/examples.php
- Download: http://sourceforge.net/projects/phplivex/files/
Create a Metal Piece Effect with a Graved Text in Photoshop
0In this tutorial I`m gonna show you how to create a piece of metal with a graved text on it.
Along the way I`ll show you how to create effects like Metal Effect,Inner Graved Text Effect or Mirror Reflection Effect in Photoshop.We`ll use two custom elements:a Custom Font and an original Grunge Brush Set.
Check it Out!
Materials needed:
Metal Lord Font by Larabie Fonts
First Step:Creating a New Document
Open Photoshop and create a New Document of 600×400px.
Step 2:Background Gradient
Now add a sleek black to black gradient for the background,with the next settings:
Step 3:Creating the Metal Piece
Grab the Rounded Rectangle Tool(U),set the radius to 15px and draw a rectangle of 370×240px.
Now add the next blending options:
A black Outer Glow with the size of 3px and the opacity of 20%.Be sure to have More >
Big collection of Regular Expressions Toolbox “regex”
2Regular expressions (â€regex’s†for short) are sets of symbols and syntactic elements used to match patterns of text and they are pretty powerful. Regular expressions have been around for a very long time (in computer industry scale) and was first introduced as part of the powerful UNIX search tool grep.
Setting Focus to an ASP.NET Control – Set Focus After PostBack – After Submit – on Page Load in ASP.NET 1.x
0Management of control focus is one of the common tasks when building web applications with effective and friendly user interface. In order to set focus on a certain control such as textboxes, buttons dropdowns after postback / after submit / on Page Load in ASP.NET 1.x, we can use a dynamic javascript block that facilitates Javascript’s focus() function.
private void SetFocus(String controlID) { // Build the JavaScript String System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append(“<script language=’javascript’>”); sb.Append(“document.getElementById(‘”); sb.Append(controlID); sb.Append(“‘).focus()”); sb.Append(“</script>”)
// Register the script code with the page. Page.RegisterStartupScript(“FocusScript”, sb.ToString()); }
For the above code, you need to pass the control’s id as the parameter, then define the Javascript function in a string variable then call the Page class to register the script.
How To Design An Effective Web Form
2When your users have dedicated enough time on your website to be interested in your service or product, and want to learn more, there is no bigger turn-off than an inaccessible, unusable form. A form can be anything from a sign-up form, to an email opt-in form, to a contact form, and more. You want to make sure that these forms are convenient, easy to use, and of course, good looking, for any of these visitors that are interested in what you do.
In this post, I want to explore the countless tools and resource for designing forms, and I want to show you how you can use these tools to your benefit to create the perfect form that will help to maximize conversions, sales, subscribers or for whatever else you may be using your form.
What To Consider When Designing The Perfect Form
The following sections are meant to More >
How To Create Dynamic Scrolling Content Box Using AJAX?
0If you have used Google Reader, then you might have noticed the way Google Reader shows feed items, it loads up few items first when you click on a feed and as you scroll down to view more items, it fetches more items dynamically and adds it to the list. (more…)
Excellent WordPress Tutorials For Better WordPress Theme
0WordPress is undoubtedly an amazing publishing platform. You can get started as quickly as with few clicks or you can customize it to any level you want. The internet is filled with good quality tutorials on customizing every aspect of WordPress.
Here are 20+ excellent tutorials that will help wordpress theme developers make better themes and give them an idea of different and unique ways to customize WordPress according to need.
Best CSS Techniques used for Charting Data
0There are many ways you can present numerical, chartable data bystyling elements using CSS. Using CSS to style your data prevents youfrom relying on static images and increases your content’saccessibility.
Below, you’ll read about 8 excellent techniques for styling elements into beautiful, accessible charts and graphs…
