User Profile

Collapse

Profile Sidebar

Collapse
Nert
Nert
Last Activity: Apr 26 '11, 12:34 PM
Joined: Nov 8 '06
Location: Philippines
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Nert
    replied to explode the / variable
    in PHP
    Have you tried using a different separator? instead of using "/" try the other character to test whether the problem is really on your system or just on the codes....
    See more | Go to post

    Leave a comment:


  • Nert
    replied to explode the / variable
    in PHP
    i tried to use your code and it works fine to me.
    Code:
    $path="root/sample";
    $dir = explode("/",$path);
    echo $dir[0];
    echo $dir[1];
    ...
    See more | Go to post

    Leave a comment:


  • Maybe the browser you are using does not support document.forms[0].submit()

    try changing it to document.formNa me.submit()
    See more | Go to post

    Leave a comment:


  • Nert
    replied to Problem with cookies
    in PHP
    Yeah, markus is right, try using SESSION, in PHP settings by default the session is set to end when the browser is closed.

    check this out.
    http://us3.php.net/manual/en/intro.session.php...
    See more | Go to post

    Leave a comment:


  • Yeah sorry, but later on i will be using this ffmpeg with PHP (if you have heard about php_ffmpeg) to convert videos on fly and the output videos will be available for download. Some kind of an online video converter. Right now i was just trying to ask for help on how can i perfectly convert this flv videos to 3gp.

    Anyway thanks for the reply Dan, i thought my post will be ignored again. lol...
    See more | Go to post

    Leave a comment:


  • Nert
    started a topic How to convert flv to 3gp video format using ffmpeg?
    in PHP

    How to convert flv to 3gp video format using ffmpeg?

    Hello there., i have this problem converting an flv video format to 3gp format using ffmpeg so that i can put the video on my cellphone.

    Well actually i have successfully converted the video to 3gp format and it plays on quick player but when i put it on my cellphone and played it, it gives me an error "Invalid video format". I've already check my cellphone's video player and it does support the 3gp video codec. Does anyone...
    See more | Go to post

  • Nert
    started a topic How to use php_ffmpeg in windows?
    in PHP

    How to use php_ffmpeg in windows?

    Hello guys, i am using PHP 5.2.6 and Apache 2.0, i am running them in a windows server. Now i have configured my php.ini to load php_ffmpeg.dll. After i restarted my server and check my phpinfo the php_ffmpeg extension was loaded successfully. Now what i want to know is how to use it? I mean how do convert videos to flv format? Do i still need to have or to download the ffmpeg.exe so that i can convert videos to flv format?

    i'm looking...
    See more | Go to post

  • Nert
    replied to Problem with sending email
    in PHP
    Hi Atli thanks for the reply..,

    Yup, I tried setting it up in outlook express and Yahoo! received my message in an instance, maybe your right Yahoo! is flagging my messages, but where can i possibly find a free mail classes? can you give an address where to find one? but i'll try to look somewhere in the internet too.

    Thanks for the help and suggestions Atli.. (^_^)


    Nert ......
    See more | Go to post

    Leave a comment:


  • Nert
    started a topic Problem with sending email
    in PHP

    Problem with sending email

    Hello guys,

    I've created a private website for submitting employees reports online, now everytime an employee will submit his/her report i am sending an email alert through PHP script to remind the report receiver that he/she has receive new reports from his/her employees. Now my problem is that when the email address is from yahoo.com the email alert takes a lot of time to be recieved by yahoo mail while others receive it in just...
    See more | Go to post

  • Is it advisable to use two different databases in two similar System?

    Hello there,

    I guess i didn't made the title of my question pretty clear, so here's the detail.

    In our company, we have this system we called MRP (Material Requirements Planning) System, it was develop using the Visual FoxPro and Ms SQL Database, now my boss wanted me to convert it as a Web-base system using PHP and MySQL DB. We will still use the MRP System made from FoxPro for data inserting/editing, but the data will...
    See more | Go to post

  • Nert
    replied to using POST from one page to another
    in PHP
    Hi fjm,

    Can we see your code so we find solutions?

    Or maybe this function will help you out..,
    using the extract() function.
    example from a post method.
    save this to example.php
    [HTML]
    <form name="form" method="post" action="login.p hp">
    <input name="uname" type="text" value="my username"/>
    <input...
    See more | Go to post

    Leave a comment:


  • I already done that jx2, I commented the exec() and the popup window disappear. Thanks for the suggestion, but i should use the exec so that i can run the ffmpeg to convert media files to flv on fly. If you have any other idea on how to run the ffmpeg in much better way than I do please post me some snippets. Thanks (^_^)




    .: Nert :....
    See more | Go to post

    Leave a comment:


  • Sorry for bothering code green, ahmmn don't mind about the looping it doesn't do anything that cause my upload.php page request for downloading.

    And, it's not a duplicate code, they do different thing. And the second loop will not be executed unless the function uploadfile() is done and returning the filename of the uploaded file.

    Anyway, i think it's about the exec() function. After executing the ffmpeg command in...
    See more | Go to post

    Leave a comment:


  • Yes of course,

    Here is my code for the conversion of media files to flv file.
    upload.php

    [PHP]$config['ffmpeg'] = 'The path of my ffmpeg';
    function uploadfile($ori gin, $dest, $tmp_name){
    $origin = strtolower(base name($origin));
    $fulldest = $dest.$origin;
    $filename = $origin;
    for($i=1; file_exists($fu lldest); $i++){
    $fileext = (strpos($origin ,'.')===false?' ':'.'.substr(st rrchr($origin,...
    See more | Go to post

    Leave a comment:


  • Nert
    replied to Delete mysql records with array_diff
    in PHP
    That's great, good luck. (^_^)



    .: Nert :....
    See more | Go to post

    Leave a comment:


  • Hello,

    Here i am again asking for help.., i'm still encountering the same problem after searching for some tips on the web.., does anyone had encountered this same problem as mine? help please (^_^)



    .: Nert :. ;P
    See more | Go to post

    Leave a comment:


  • Nert
    replied to Failed to connect mail server
    in PHP
    Try to change the value of your SMTP in your php.ini, put the domain name of your mail server, for example " mail.example.co m "...
    See more | Go to post

    Leave a comment:


  • Nert
    replied to Delete mysql records with array_diff
    in PHP
    Yah, this script would make it clearer.

    Anyway, have you made your code working Pez?...
    See more | Go to post

    Leave a comment:


  • Nert
    replied to Delete mysql records with array_diff
    in PHP
    In your WHERE statement, I find " wastedid='$dele te' AND id='$id' " . But where did you get the value for " $id " ?


    .: Nert :. (^_^)...
    See more | Go to post

    Leave a comment:


  • Nert
    replied to Radio buttons : how to make them link
    in PHP
    Hi anafpires,

    I suggest you specify what exactly you want to happen. Specify a little bit of your problem will help us easily find some solutions for you. (^_^)


    .: Nert :....
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...