User Profile

Collapse

Profile Sidebar

Collapse
Deejam
Deejam
Last Activity: Aug 7 '07, 06:24 AM
Joined: Apr 14 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Deejam
    replied to How to protect coding & database
    in PHP
    sumaiya and Atli thanks for your reply
    See more | Go to post

    Leave a comment:


  • Deejam
    replied to Need Help to print
    in PHP
    thank you eric

    i am generating report from different table according to user's search and i am not storing it...rather the client need to take hard copy (print out)

    i am displaying the report in a table..i.e first row is heading and then i am listing it..
    i need to take the print out of the table alone and button click event..

    hope i am clear
    See more | Go to post

    Leave a comment:


  • Deejam
    replied to How to protect coding & database
    in PHP
    tolkienarda thanks for your reply,

    here , i have to give the total project code to the client...
    need to know how to secure (coding and database) from copying to other company...
    See more | Go to post

    Leave a comment:


  • Deejam
    started a topic Need Help to print
    in PHP

    Need Help to print

    Hello,


    In my project i am creating a report of the week, here i need to take print out of the report (only text) on a button click. how to do it..
    See more | Go to post
    Last edited by Deejam; Apr 20 '07, 12:59 PM. Reason: title modification

  • Deejam
    started a topic How to protect coding & database
    in PHP

    How to protect coding & database

    hello,

    i am doing a web project.(Intran et Application)
    Is there any way to secure the coding and database, so that the project works only on his machine (i.e local server) ...

    Things i need:

    1. hiding the php/javascript coding part.
    2. hiding database structure and contents. (strictly database should be accessible only via project)

    3. copy & paste the project to
    ...
    See more | Go to post

  • Deejam
    replied to space in username
    in PHP
    you can add character between the quotes...


    [PHP]preg_match('abc def', $UserName)[/PHP]


    Download the php manual, which helps alot

    http://www.php.net/download-docs.php
    See more | Go to post

    Leave a comment:


  • Deejam
    replied to space in username
    in PHP
    hi,

    hope this piece of code helps, change to your requirement :

    Code:
    $mystring = 'ric hard';
    $findme   = ' ';
    $pos = strpos($mystring, $findme);
    // Note our use of ===.  Simply == would not work as expected
    // because the position of 'a' was the 0th (first) character.
    if ($pos === false) {
        echo "The string '$findme' was not found in the string '$mystring'";
    ...
    See more | Go to post

    Leave a comment:


  • Follow the steps given in the site, if u find problem post code and problem clearly.
    See more | Go to post

    Leave a comment:


  • Hi

    I dont have idea about how to create, but i used rich textbox editor for formatting mail... Here is the link for the rich textbox editor which i use..

    http://www.openwebware .com/products/openwysiwyg/

    if you find better post it here... :)
    See more | Go to post

    Leave a comment:


  • Deejam
    replied to PHP image Uploading along with thumbnail
    in PHP
    Thanks cyberking and Motoma...

    here is the code for creating thumbnail to the uploading picture...

    echo "Creating thumbnail for $filename <br />";
    // Load image and get image size
    $orgimg = imagecreatefrom jpeg($filename) ;
    $width = imagesx($orgimg );
    $height = imagesy($orgimg );
    // Setting new width and height for thumbnail size
    $newwidth = 100; //any size as you...
    See more | Go to post

    Leave a comment:


  • Deejam
    replied to PHP image Uploading along with thumbnail
    in PHP
    @ Motoma

    here the page shows the all the images which user has uploaded, if i use the height and width to reduce the image display size, eventually the page will take much time to load...

    hope i'm clear...

    thkx for replying
    See more | Go to post

    Leave a comment:


  • Deejam
    replied to how to access through LAN
    try

    "http://computername/projectname/Indexpage.html"

    hope this will work
    See more | Go to post

    Leave a comment:


  • Deejam
    started a topic PHP image Uploading along with thumbnail
    in PHP

    PHP image Uploading along with thumbnail

    hi,

    i've this situations where user will upload images..my code works fine for uploading images.. but i need to create auto thumbnail picture (of the same image) whenever user upload images... help me how to create thumbnail picture..
    is my question clear?

    thk in advance
    See more | Go to post
No activity results to display
Show More
Working...