Search results

  1. P

    Help with PayPal button code...

    First PHP code part put in in your starting page <?php $url = "https://www.paypal.com/cgi-bin/webscr"; $tax_total = $db->f("order_tax") + $db->f("order_shipping_tax"); $discount_total = $db->f("coupon_discount") + $db->f("order_discount"); $post_variables = Array( "cmd" => "_xclick", "upload"...
  2. P

    sort of redirect help

    You can used this code for css rewrite cond. RewriteEngine on RewriteCond %{REQUEST_URI} .css$ RewriteRule ^(.+)$ css-ssc.php?css=%{REQUEST_URI}
  3. P

    AJAX charset trouble

    You can used specific charset for those special char. Utf-8 does not suuport specific special char. You can used it http://a4esl.org/c/charset.html like this <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  4. P

    Javascript timer with php. Help Please. :D.

    better way to using ajax that code no refresh whole page. Refresh some part of data
  5. P

    New to PHP

    You can download full tutorial php here http://www.php.net/download-docs.php
  6. P

    [php] Login

    <?php ob_start(); session_start(); include ('config.php'); if(isset($_POST["sumbit"])) { if (isset($_POST['submitted'])) { $errors = array(); } if (eregi('^[[:alnum:]\.\'\-]{4,30}$', stripslashes(trim($_POST['username']))) ) { $username = $_POST['username']...
  7. P

    Addition in PHP?

    This is perfect example. <?php foreach ($total as $key => $val) { echo "total[" . $key . "] = " . $val . "\n"; } ?>
  8. P

    E-mail In PHP

    You can used phpmailer function sent mail to yahoo then see it. 90% problem solved. <?php require("class.phpmailer.php"); $mail = new PHPMailer(); $mail->From = "list@mydomain.com"; $mail->FromName = "List manager"; $mail->Host = "smtp1.site.com;smtp2.site.com"; $mail->Mailer =...
  9. P

    CSS filters work in?

    Filter need may be in IE 6 or lower version http://www.fred.net/dhark/demos/css/css_filter_examples.html http://www.hypergurl.com/cssshadowfilter.html
  10. P

    email

    You have sent message that's portion in your message body part. detail description what's problem actually??
  11. P

    how to create sign-up form?

    You can download login & registration form --> Source Code here http://www.phpasks.com/ajax/ajax-login.html http://www.phpasks.com/ajax/submit_form_ajax.html now what issue tell me????
  12. P

    Can't change frames on index page

    you will paste your code here. What's problem face?? After see code then tell u
  13. P

    Help.

    Which mail server using sent mail???? You can currently working on php then mail <?php $to = 'nobody@example.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: webmaster@example.com' . "\r\n" . 'Reply-To: webmaster@example.com' . "\r\n" . 'X-Mailer: PHP/' ...
  14. P

    how to create sign-up form?

    You can use session variable for After login set session if session available then see those pages ob_start(); session_start(); if (!isset($_SESSION['int_userid'])) { tep_redirect("index.php"); }
  15. P

    How to get number of uploaded bytes in php

    This is very good example for read image uploading bytes. You can use this example - I am preferring to you.
  16. P

    Bring Traffic to your site/forum. How you do it?

    I am agree with tittat. First Point - There is no much relevancy in meta tags and keywords. Good content but same part of meta description & keyword. If Your meta description & keyword & Also good content ==> Then it is very good for SEO. Second Point - There is no need of submitting your site...
  17. P

    AJAX response xml not working

    First You will try below example run, then tell me. http://www.phpasks.com/ajax/simple_ajax.html Download source code. Run simple ajax script. Prototype js Framework - Download Source code try it http://www.phpasks.com/ajax/prototype_ajax.html
  18. P

    is my .htacces slowing down my site?

    May be your serve slow than effect on your site. No. of parameter effect on site slowing down. DB Query also one part of site slowing. Otherwise You will raised a ticket & You tell to server guy my sites slowing, Before friday my site was ruuning very well, But currently my site is not...
  19. P

    AJAX Refresh problem with IE

    First You will try below example run, then tell me. http://www.phpasks.com/ajax/simple_ajax.html Download source code. Run simple ajax script. Otherwise what problem your source. You will paste your source code here & them give u suggestion.
  20. P

    Regestration forms

    Hi cursedpsp, Can you send your page or code then I will tell you to what's wrong???
Top