No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
23 Posted Topics
Re: It sounds like you want a Content Management System so every now and than your client can update the website. I would suggest [URL="http://www.cmsimple.org/"]http://www.cmsimple.org/[/URL] It is a non database driven cms with wysiwyg editor. | |
I am retrieving a string in json format from a php file and assigning it to a var in javascript string = {"name": "piet", "id": "45"} how do i convert this string into a real json object? | |
i am looking for some advice on what is the best approach to get this done :) my datababase holds a table categories with the columns [CODE]|category_id|category_name|category_parent_id|[/CODE] i am showing my users a html sortable table with the following columns |category_id|category_name|category_parent_name| so what i want, is to do a ORDERBY … | |
When i do a select on my db. example. a row with the column 'animal' has the value of 'Horse' select * from table where animal = 'horSe' doens't work?! How to make it work full all variations with capital or non capital? | |
Currently i am trying t figure out a simple straight forward way to back-up all the websites on my server to another server, with history/changes ( in a SVN way ). 1. I upload a file to the main server. 2. A second copy goes to the backup server. 3. … | |
I have some strings that contain & # 234 ; or other special character, i want to normalise them so i can use them in database, urls etc. What i started is below, but i can not belief there isn't a php function for it, anyone now which one? [CODE] … ![]() | |
Hi there, i am struggling with my code to read xml with php. it is giving the following error: Fatal error: Call to a member function attributes() on a non-object on line [COLOR="Red"]red[/COLOR]. The weird part of it is that the output is good/as it should be. [CODE] if( ! … | |
Re: Can't understand really what you want, a bit more specific would be nice. Client will have library of available themes [URL="http://wordpress.org/extend/themes/"]http://wordpress.org/extend/themes/[/URL] I need to create a plugin in wordpress. [URL="http://codex.wordpress.org/Writing_a_Plugin"]http://codex.wordpress.org/Writing_a_Plugin[/URL] which will search are available themes from client server and when anyone click on activate the theme it will copy … | |
Re: I always use pt when it is concerning fonts/text. pt is in my opinion the easiest to work with and the best compatible with all resolutions, also the mobile browser. In other words, the text remains readable with pt. IE supports em,%,px and pt. For divs i always use px … | |
Re: it can! The file you refering to is XML, so i suggest you'd use simplexml, you can google it, or [URL="http://php.net/manual/en/book.simplexml.php"]here[/URL] is a great manual! | |
Re: A big fan of [URL="http://wordpress.org"]Wordpress[/URL] here, and my enthousiasm keeps growing every time i get more into it. Not a big learning curve and a great platform to build as a CMS. When you build this for a client, i recommend you to minimize their admin interface. Also make use … | |
Re: First off, [CODE] $sevendaysago = date("Y-m-d", mktime (0,0,0,date("m"),(date("d")-7),date("Y"))); // 2010-11-13 $tomorrow = date("Y-m-d", mktime (0,0,0,date("m"),(date("d")+1),date("Y"))); // 2010-11-21 [/CODE] i am using the following query, assumming that the dateformat is the same as the above variables. [CODE]$query = "SELECT * FROM table WHERE date BETWEEN '$sevendaysago' AND '$tomorrow' ORDER BY date … | |
Re: choise is easy, Wordpress has Jquery adapted and the webtool kit is qiuet new isn't it? On the other hand, with the toolkit it will be easier to build your apps for android tablets and such. | |
Hi There, I have found a very usefull and lightweight code that is made by the famous Tim Van Damme, a Dutch compatriot. Here is the code, i will explain my question beneath. The js that works in combination with the js libary. [CODE]<script language="javascript" type="text/javascript"> jQuery(document).ready(function($) { $('.tabs').each(function () … | |
Hi there, I am busy with a ajax driven application in combination with Wordpress and now i found a great script that will convert every link into a ajaxlink that will call its content to a div. great, and it works! sometimes :( when it outputs urls like [url]www.domain.com/#/information[/url] or … | |
Re: Hi Green, There are a few ways to get what you need. 1. You can use CSS like this Your css ( a image of 50 x 50 px ) [CODE].image { display:block; width:50px; height:50px; background:url(image1.jpg) no-repeat;} .image:hover { background:url(image2.jpg) no-repeat;}[/CODE] your html [CODE]<div class="image"></div>[/CODE] there is a better way … | |
Hi there, I have a piece of code that should give my category list a nice accordeon effect to show the sub categories. [CODE] <ul class="categorymenu"> <li class="cat-item cat-item-10"><a href="...">cat1</a> <ul class='children'> <li class="cat-item cat-item-11"><a href="...">cat1sub1</a> <li class="cat-item cat-item-12"><a href="...">cat1sub2</a> <li class="cat-item cat-item-13"><a href="...">cat1sub3</a> </ul> </li> <li class="cat-item cat-item-10"><a href="...">cat2</a> … | |
Re: I recommed z-index because the most browsers are comfortable with the z-index. Concerning negative margins, there could be some differances between browsers, besides, Negative margins always become annoying later on the development for me. | |
Re: i would go for [URL="http://blueprintcss.org/"]css blueprint[/URL] framework! They got nice templates and you can be sure it is all validated. | |
Re: Hi there, i am not that familiar with js but u saw this script with a progresbar (you can read spinner) and a proper responde that you can use to give your users feedback. [URL="http://www.simonerodriguez.com/ajax-form-submit-example/"]http://www.simonerodriguez.com/ajax-form-submit-example/[/URL] | |
Hi there, I am building a blog at the moment i have a amazing script that search a post for the images in it. So i can just setup a post template, call the images that are in the post and go. In this way i put the images unedited … | |
Re: This isn't a html or css topic really, i worked a few times with Paypal. I assume you've got some kind of paypal module on your webserver. Mostly in the config files, there is a option to enter your linkback url, i mean the page were the will be redirected … | |
Hi There, it's Frank from the Netherlands. I am a freelance webdesigner. To design is my favorite activity but he, no website without some code! So most of the site i develop on my own are made in Wordpress. I love it! Just bought a book for plugin development and … |
The End.