Search:
Type: Posts; User: Marcin
Search :
Search took 0.01 seconds.
just rely on $_SERVER['REQUEST_URI'] part of information. It will tell you current location of your visitor, within your document.
Hi,
please describe what you want to do beacuse so far i see few errors, one of them is a vraiable scope, another is your index.
If (assuming that variables scope is correct) you want to...
because its cross browser js framework
Could you explain a bit more ? What kind of error are you getting back from PHP and what JS AJAX implementation are you using in your app ?
cheers
Hi, make sure that when you using eval with variable encoded with json_encode eval argument looks like that:
eval( '(' + responseText + ')' );
otherwize you will get errors.
cheers,...
Hi
I have an issue with mod_rewrite
here you have examples.
I am trying to add this rule:
RewriteRule !\.(js|ico|gif|jpg|png|css|htc|swf)$ dispatcher.php
As above it works fine, but I...
Hi,
simply, just use any MVC framework.
cheers,
/Marcin
Mate its simple to do, I think you should read few tutorials about JS, it will be usefull for you and save our time.
All the best
its not big and small, its still this same favicon. New mozilla has a new feature which apend to the url address, after favicon company name which is issued to SSL certificate. Its only appear for...
you shoud add unit after value like px, or em
<span style="line-height:.5px;"><br></span>
Below works with your example:
<?php
$start = strpos($_SERVER["QUERY_STRING"],"=");
$extracted = substr($_SERVER["QUERY_STRING"], $start+1);
echo $extracted;
You should float images left, and after that you will be able to set its margin.
with javascript or server side scripting ? Anyway, for both its no problem.
Hello,
I have a problem with mail() function, actually with hosting.
I need to connect to my remote smtp but my hosting is running all outband connection thru proxy server. Do anyone has idea how...
I don't know what do you want to achive and why you use in your code
$startMiles - which is undeclared and is empty - that's why you get only numbers. If you want to display value as startMiles01 -...
and you want to have: startMiles01, startMiles02, startMiles03 ??? insted of 01, 02, 03 ???
like PHP and SQL for example
here you have:
<html>
<head>
<script type="text/javascript">
function getText(elem){
elem.onblur = function(){document.getElementById("result").innerHTML = elem.value};
}
what exactly you need to do with this ??
just change this:
<style type="text/css"> body { background: #FFF; } </style>
to:
<style type="text/css"> body { background: #000; } </style>
if...
with xml £ entity is invalid. I think you should use:
<description>
<![CDATA[Sample description £$&.]]>
</description>
<![CDATA[...........]]> is designed for ignore its content...
no way, must to learn any backend language to keep records somewhere on the server.
try w3schools.com, there you will find basic courses.
You must to use AJAX for that. I recommend cURL() instead of file()
BR
Hello,
try this simpleAjaxGetLib.js on:
http://simpletags.org/#free_scripts
Its packed with manual and extremly easy to install and of course browser independent.
Let me know if you will...