• Member Avatar for Borzoi
    Borzoi

    Began Watching Sessions aren't working

    By default the page after login.php is authorize.php which just checks the information then sends it off to index.php. From index.php I cannot get to my page 'volunForm.php', it just …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Sessions aren't working

    You have the following if statment in your volunForm.php page: if(!isset($_SESSION['sess_user_id']) || (trim($_SESSION['sess_user_id']) == '')) { header("location: login.php"); exit(); } This is redirecting anyone who doesn't have the session cookie …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching contact us

    Hello, Can anyone help me troubleshoot this problem: This code suppose to work in someone else server, but when I place in my own server this code doesn't work I …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in contact us

    If the script is working on another server but not yours then your firewall may be the problem, blocking the connection. Pinging smtp.gmail.com will not tell you if the port …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Problem when going online

    If you're only seeing the code on the site and in the view source then your hosting doesn't have PHP enabled. Check with your hosting provider to make sure PHP …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Unable to save data in mysql database

    Hi,am new in php and appreciate your help in this matter....tried to save the record below into mysql database but couldn't.The field are blank and the Targetid field is always …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Unable to save data in mysql database

    Can you let us know what the error is you are getting when you run this? Do you have a form passing to your `$_POST` variables? If nothing is passing …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Problem when going online

    Although i can upload mp3 files locally (wampserver), meaning that the path its been storaged on the database and the actual file is been saved on the folder i have …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Problem when going online

    If you're on a shared hosting solution, you likely won't have access to a php.ini file. You can see what the upload limit is set to by uploading a PHP …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Makefile:124: *** unterminated call to function `foreach': missing `)'.

    Hi I am creating Makefile and it gives me following error Makefile:124: *** unterminated call to function `foreach': missing `)'. Stop. The Makefile around line 124 is .PHONY: popiso popiso: …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Makefile:124: *** unterminated call to function `foreach': missing `)'.

    Do you have any foreach loops before line 124? While line 124 is the one with the reported error, the cause of the error could be before it.
  • Member Avatar for Borzoi
    Borzoi

    Began Watching MySql Deleted records appear

    Hello althouh i delete records from the database when i call them on a query they appear. Not the other records of the data just the id i have already …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Flushing Password and setting a new

    Hi all, I have to clarify a few ambiguites regarding mysql client to use for i running database scripts 1).Firstly i want to flush the root password set by me …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Flushing Password and setting a new

    Your syntax is incorrect. To specify the password, you use the `-p` flag, you don't type `password`. mysql -u root -p password This will log you in to MySQL from …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching command line scrolling

    I am running a windiws command prompt. When my build is done sys out sometimes It does alow me to Scroll all the way back to the beginning Of the …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in command line scrolling

    I think you've posted this in the wrong forum. This doesn't seem to be related to web development. To answer your question, the Windows command prompt can only display up …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Email Mail delivery failed: returning message to sender

    I want make an email script for users to be able to send me messages and i getting Mail delivery failed: returning message to sender this is the script <ul> …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Email Mail delivery failed: returning message to sender

    Do you know what the returned message states? I see you have specified a From address in the script so the bounce would be returned there.
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Hiding Div until clicked

    Using the CSS `display: none` will mean that it will always be hidden. It sounds like you're looking for a solution which will require Javascript or JQuery. If it was …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Cannot send email from server

    Hello, I am trying to set email from my web server which we hosted ourself. I already set my php.ini to smtp.indonusa.net.id and from email: davy@indonusa.net.id to: davy_yg@yahoo.com The program …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Cannot send email from server

    This line: $mail->Host = "ssl://smtp.indonusa.net.id"; ...should not contain `ssl://` at the beginning. I'm fairly certain it should simply be: $mail->Host = "smtp.indonusa.net.id"; If not, specity `http://` at the beginning. The …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Hiding Div until clicked

    When clicking on the word reachme, there is an event that occurs, the problem is not with the anchor or the event. The problem, keeping the #reachme div hidden until …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Hiding Div until clicked

    Do you want the div to be displayed for the duration the mouse button is clicked or do you want it to stay displayed after a single click?
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Regular Expression for str_replace

    here i'm working with php regular expression. in this project my leader said use only regular expression instead of PHP predefined function. i know the PHP string functions are simple …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Regular Expression for str_replace

    Why would you want to use a regular expression instead of str_replace? Not only is it a more complicated way to do a simple task but regular expressions require more …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching recording date and time

    Hello, I am creating an elearning that tries to record date and time and I am looking for an automated system to do that so that the user won't enter …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in recording date and time

    If you want to input the current time (at the time of the insert) then you can use the `now();` function. What gets stored is dependant on the field type. …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Creating Web Message Feature

    Hello, I am trying to create a web message features. This is the code that I have done so far: messages.php <?php //LOAD INBOX MESSAGES $result = mysql_query("SELECT * FROM …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Creating Web Message Feature

    You'll need an entry in the database which marks the message as read or unread. From your code, I can see that you only have four entries in the database: …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Web Development

    Hi, I'm new to web development sector. Can anyone suggest me some tips or blogs to gain information about the web development with emerging ideas and tricks.
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Web Development

    [W3 Schools](http://www.w3schools.com/) is one I've used and sometimes still reference. If you're looking for PHP specific things, [PHP.net](http://php.net) is a good reference but it's not a tutorial site. It's mainly …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching move_uploaded_file gives 500 internal server error.

    move_uploaded_file gives Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator to inform of the time …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in move_uploaded_file gives 500 internal server error.

    Just a note but your if statement has an error. if($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['submit']) == 'POST') You're checking if a variable is set and then if the result is …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Having issues sending to yahoo.

    Hi there im having a issue sending to yahoo aol ect. but can send to icloud. below is the code any idea what im doing worng. Like i said it …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Having issues sending to yahoo.

    You may find that Yahoo! have blocked the server the mail is being sent from, bouncing it back or just refusing it. The mail log on the server sending the …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching what is the difference between FTP, SFTP

    what is the difference between FTP,SFTP client can any one explain me briefly
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in what is the difference between FTP, SFTP

    SFTP is FTP over SSH. It uses SSH protocols to upload/download files and browse the remote server. This would also use the SSH port (default 22). FTPS is secure FTP …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Marking specific posts as a contribution to the answer

    That's a good point which I didn't think of.
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Marking specific posts as a contribution to the answer

    I meant marking multiple posts/users in the thread as contributing rather than just a single post/user. I agree that most often there are multiple users which contribute to the solution …
  • Member Avatar for Borzoi
    Borzoi

    Created Marking specific posts as a contribution to the answer

    I think it would be a good idea for the question asker to mark the posts or the users who contributed to finding the answer to their query. The reason …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Marking specific posts as a contribution to the answer

    I think it would be a good idea for the question asker to mark the posts or the users who contributed to finding the answer to their query. The reason …
  • Member Avatar for Borzoi
    Borzoi

    Created Embedded Multi-Time Zone Calendar

    I am looking for a calendar I can embed on my website which will have a list of events I will be holding/attending/etc for all to see. I have had …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Embedded Multi-Time Zone Calendar

    I am looking for a calendar I can embed on my website which will have a list of events I will be holding/attending/etc for all to see. I have had …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching Need help to find string words via using like oprator

    I have a table with two columns "storename" and "discription". id---- Storename ---- Description 1 ---- Myntra ---- 20% of on all product 2 ---- Flipkart ---- 40% of on …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Need help to find string words via using like oprator

    I believe that prash21m is trying to get search results returned even if the search query contains something not in the description. I haven't done anything like this for a …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Record navigation in PHP

    If that has solved your problem, make sure you mark the thread as solved so that others who may have a similar problem can find the solution easier.
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Record navigation in PHP

    The way you're passing information into the $url variable wouldn't work. Using the Previous link, your if statement is this: if ($screen > 0) { $url = "z.php?screen=" . $screen …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in Record navigation in PHP

    Your problem is with your IF statement on lines 14/15. You're checking the variable `$screen` before you're putting anything in to it: if (!isset($screen)) $screen = 0; else echo $_GET["screen"]; …
  • Member Avatar for Borzoi
    Borzoi

    Began Watching stuck with php

    hello i have a problem understanding how a function works for example i wrote this php code <?php $face = $Wall->Profilepic($profile_pic_path); $query = mysql_query("SELECT * FROM `messages` WHERE type ='A' …
  • Member Avatar for Borzoi
    Borzoi

    Replied To a Post in stuck with php

    The function parameters are `Profilepic($uid,$base_url)` You seem to be passing in different variables. I would assume that $base_url is the scripting path for the hosted domain so for a Linux …

The End.