52,566 Archived Topics
Remove Filter ![]() | |
Can any one send me the config setting for jdbc and mysql using apache server setting in netbean. i wanna use jsp with xampp and jdbc Web Development apache java java-jsp java-netbeans mysql | |
[Autorize] I want to set the page if the user is not currently login in MVC. How can I do it? I want to set it in "User/Login" Web Development asp.net software-architecture | |
hya i have 2 user goups in my website one for couples and one for singles what im wanting to know is when a couple registers how can i direct them to a couples directory ive tried the following but its not doing it can anyone help with this if( … Web Development file-system php | |
Hi i have a date of birth for members in registration form but in the couples profile im adding a date of birth for both members in the couples group as in the pics included heres the coding for it from the profile page can anyone help be much appreciated … Web Development php | |
Hello. I am working on a form with multiple text-entry boxes and I am using jQuery to give messages to the User for each field. So far every field works correctly except for the last field, "Company": When a User enters any text the message should disappear, behaving like the … Web Development javascript javascript-jquery | |
hi i had this script created by a php coder and it worked on another site of mine with same software but now its not working on current site can someone check it out heres code much appreicated Registartion3.php <table width="750" cellspacing="5"> <tr> <td></td> <td></td> <td></td> <td></td> <?php $multiple = … Web Development php ![]() | |
Hi guys, I have an idea for a website that is original, I've not seen anything that does exactly what I intend to do. I don't think it's amazingly groundbreaking and will change the internet as we know it, but it's my humble idea that I think could potentially serve … Web Development | |
Someone can help me to find my error: $query=mysqli_query($con," SELECT * FROM item WHERE ITEM = $ITEM ") or die ( mysqli_error($con)); i reciveing this error,i dont know wherer is syntax error. *You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version … | |
Hi I am getting error this error while upload image? Error:Fatal error: Class 'Image' not found Code: $gallerycate_img = "gallerycateimg/".$_FILES["txt_photo"]["name"]; $gallerycate_image = $_FILES['txt_photo']['name']; if (($_FILES["txt_photo"]["type"] == "image/jpeg")||($_FILES["txt_photo"]["type"] == "image/jpg")||($_FILES["txt_photo"]["type"] == "image/gif")||($_FILES["txt_photo"]["type"] == "image/png")&& ($_FILES["txt_photo"]["size"] < 200000000)) { move_uploaded_file($_FILES["txt_photo"]["tmp_name"], "../gallerycateimg/" .$_FILES["txt_photo"]["name"]); copy("../".$gallerycate_img, "../gallerycateimg/thumb/".$gallerycate_image); $file_thumb="../gallerycateimg/thumb/".$gallerycate_image; $file_thumb_1="gallerycateimg/thumb/".$gallerycate_image; $img = new Image($file_thumb); $size = … Web Development file-system image php | |
This simple onlick event works in IE and Chrome but not in FireFox (latest version). Is there some syntax issue? <html> <head> <script> function scroll() { alert(1); } </script> </head> <body> <a href="#" onclick="javascript:scroll();" />Click Here</a> </body> </html> Thanks in advance! Web Development javascript | |
hello,how i can share video on my website to facebook and to twitter by meta tags in html and to share image too to facebook and twitter but not all page only share for video and image Web Development php social-media video | |
I need help with Php forms. I am trying to insert at least 2 & a Max of 3 team players data to MySQL for registration purposes. By using a loop to get the 3 form values and iterate until data is stored in the tables First Table is Players … ![]() | |
Am a beginnerr in PHP but am presently working on a reporting software that should enable different staff to submit there report. Areas i need help. 1) There are 7 companys that will submit there report on this software. need to know how the database will be structured. 2) How … Web Development php ![]() | |
I'm newbie in web development. If I use the adress "www.xxxxxx.com/test.html#chgd", the second accordion should be expanding. It works perfectly for Chrome but not for Firefox and Explorer. What is the problem in the source code that works for Chrome but not for Firefox and Explorer? I also have used … Web Development css-bootstrap javascript ![]() | |
Hi everyone, i need help here.. i want to calculate age of user.... but i am getting this error ****Catchable fatal error: Object of class DateInterval could not be converted to string in C:\xampp**** while($row=mysqli_fetch_assoc($data)) { $date=$row['Dateofbirth']; } $dob= new DateTIME($date); $interval=$dob->diff(new DateTIME); Web Development php | |
hi i have the following error in my sent message file Warning: date_diff() expects at least 2 parameters, 1 given in /home/letsswin/public_html/sent_mail.php on line 146 Show Heres code section for error <?php $lastlog = mysql_fetch_array(mysql_query(" select * from user_lastlogin where online_status = '1' and user_id = '".$user_id."' ")); $start_date = … Web Development php | |
Hello, I have two mysql tables, the first one for salutation (salutationId, SalutationTitle) and the second one for clients (Id, FirstName, LastName, salutationId) . I can do the dropdown list from salutation which contais (Mr., Ms. ...etc) in a regitration form and insert the data to mysql without problem. Here … | |
Hi, i got a problem in my websever, i am using lastest version of uniform server on microsoft windows 2008 r2 , but the problem is the httpd crash i searched for the solution some1 tells that i should use sfc/scannow , i did it same problem , and details … Web Development apache php web-server | |
Hi, I have a range of *start* and *end* dates return from database in while loop i need to find, how many of them are continuing. The example return data; Array ( [start_date] => 2014-09-22 [end_date] => 2014-09-28 ) Array ( [start_date] => 2014-09-15 [end_date] => 2014-09-21 ) Array ( … Web Development php | |
Hi, I have this situation while ($row = $stmt->fetch(PDO::FETCH_ASSOC)){ $images[] = [ 'image' => $row['image'] ]; } function image_html($image) { return '<img src="' . $image['image'] . '" class="img-responsive" />'; } echo '<div class="small-box"> '. image_html($images[0]) .' </div> <div class="small-box"> '. image_html($images[1]) .' </div>'; // some more divs Is it possible … Web Development php | |
hello, after I fill the contact form, I get the message that was sent successfully, but my email receive error: A message that you sent was rejected by the local scanning code that checks incoming messages on this system. The following error was given: Erorare reference : This email was … Web Development php | |
Hello everyone, I'm creating a simpel survey tool'. When people insert the question, they can also what kind of question type (checkbox or radiobutton) Adding question and types in the mysql is oke.. I have a problem with showing the type & question Problem: the questions only show if I … | |
For one of our projects we are looking for a Word editor that can be used in ASP.NET without the need of Office/Word being installed on the server. The requirement is that we need to be able to edit Word mail merge templates online. Any advice or pointers welcomed. Web Development asp.net | |
Hi, i have problem to save record and send email in php. After selecting the responsible person, the system supposed to save the responsible person in the database and then send email to notify the responsible person on his progress. The coding is below but it doesn't work. Please kindly … | |
Greetings Pros, I just want to ask how can i format a certain string to italic. I have this code but it's not working. Well I know it will not work because the array is still in array format not in string yet. Right? $(document).ready(function() { //The demo tag array … Web Development javascript php | |
I'm trying to query from two tables but whenever i run my php script i get this error, any help would be highly appreciated Database query failed: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to … | |
Hi guys, I'm following an example from a book (incidentally I'm amazed how many mistakes I've found in pretty much all the MVC books I've so far consulted) and I think I've found where the error is by going line by line, compile and executing the app. Basically, this is … Web Development asp.net visual-studio | |
I have some JQuery code where an if-then statement is being run after a .slideToggle event. I just don't understand why the if section is still being run when it would appear the if statement is false. Code incoming: JQuery: $(function() { var pull = $('#pull'); menu = $('div#nav ul'); … Web Development javascript javascript-jquery queue | |
Hi.. I setting start date and end date in my php page using javascript with following options. Start date options mindate-today maxdate-end date(after selecting end date) End date options min date - start date Its working correctly.But I want to change the date format from yy-mm-dd to dd-mm-yy. I changed … Web Development javascript-jquery | |
I'm having trouble with my pagination using grid view if the datasource is in Page_Load event. But when I manually use the GridView -> choose datasource in its property, I don't have any problem with the pagination. I'm using the Page_Load event because there are some parameters. Please help and … Web Development asp asp.net open-source | |
this is my shash.html page <!DOCTYPE HTML> <html> <head> </head> <body> <form action="shash.php" method="post"> Name:<input type="text" name="username" id="username"> <span class="error">*<?php echo "$nameError" ; ?></span> Password:<input type="password" name="password" id="password"><br> Email:<input type="text" name="email" id="email"><br> <input type="submit" name="submit" value="submit"> </form> </body> </html> this is my shash.php page <?php $nameError=""; $name=""; if(isset($_POST['submit'])){ if (empty($_POST["username"])) … | |
Hello, I have created a select product using a different way like frst we select product from dropdown and click on next button on next page the dropdown have to show the company names i.e only that companies which belongs to the selected product but i am bit confused how … Web Development data-structure html-css iphone php | |
Hi guys, I'm trying to get my head around this strongly typed view concept but I keep getting an error hen I view the page. Basically, my application is called modelsTest and I have a CompanyInfo.cs class: using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace modelsTests.Models { public class … Web Development asp.net visual-studio | |
hya im trying to populate a drop down select list from the database i have set the database up and written the following out if anyone can help would be much appreicated // Fetch user details $userdata = mysql_query("select * from user where user_id = '".$_SESSION['userid']."' "); $fetch_user = mysql_fetch_array($userdata); … Web Development php | |
**How to open, read, transfer all content line by line in database depend upon their specification using php??????? ** I have a txt file that deals with numbers and the delimiter is not present in numbers. But i want to store that huge numbers depend upon there description. For example … Web Development ![]() | |
Hello, I am trying to create ecommerce website which includes payment gateway. My ecommerce site is coded in PHP. Any clue how to incorporate payment gateway with my ecommerce site? Also, is there any extra fee for that ? Web Development ecommerce | |
Hi, In a page I have 20 fields including image field, And I have 4 buttons like, submit, preview,send Email, cancel. If i click the print button it has to show what are the fields I have entered with values after that it has to take in printout, for this … Web Development | |
My site is giving me a 500 internal error. In the data.php file it is asking for a few things: //db access info $sql_host='';//host $sql_user='';//db user $sql_pass='';//db pass $sql_db='';//db name //path and url $base_path="";//full path to script $main_url="";//url to the script $cookie_url="";//the domain name of your website without http://www The … Web Development file-system php web-design | |
sample code of requisition and issue slip pls. .how to create it. . Web Development php | |
Hello Guys, My name is **Valentin Fitzmann**. Currently, I am investor in **Real Estate**. I want to expand my business that why I need a website, I need suggestions for website domain name as well as I need recommendation on web space server as well. This will be a challenge … Web Development | |
Hi i would like to fetch images from name of the image by which i have stored the image from the upload folder. how can i do it in wordpress. Web Development file-system image php wordpress ![]() | |
Hi . I want to know how pass the data from the datagrid to textbox through query string with only the ID of the selected row being passed as query i.e when I select a particular row all the attributes of that row should be displayed on the textboxes of … | |
hi ! Anyone can tell me how can i get the value of dynamic textbox on jsp page. If i'll use request.getParameter("elementName"); here as text box will be generated dynamically i can't assign name of the text box . Pleeeeeeeeeeeeeeeeeeeeeeez help !!! Thanks :) | |
How can I convert this Ruby Gem to PHP? token = "your_nypl_api_token" client = NyplRepo::Client.new(token) ``` ``` token = "your_nypl_api_token" options = {:debug => true, :server_url => "http://api.repo.nypl.org/api/v1"} client = client = NyplRepo::Client.new(token, options) Also url = "http://api.repo.nypl.org/api/v1/items/8568ccd0-c614-012f-1d74-58d385a7bc34.xml" uri = URI.parse(url) http = Net::HTTP.new(uri.host, uri.port) headers = { "Authorization" => … | |
Hi everyone, Is there any way to redirect page without header and javascript ? Web Development php | |
using a tutorial am learning how to create a shopping cart when on my machine its working fine but when hosted on a different server its not working. this is the line i need help with //current URL of the Page. cart_update.php redirects back to this URL $current_url = base64_encode("http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); … Web Development machine-learning | |
Hi, all I'm working on a website that is comprised of two iframes within several nested divs ( the frames named "frame-menu" and "frame-main"). Displaying as such: <div id="wrapper"> <div id="header">Header text/image goes here</div> <div id="menu"><iframe name="frame-menu" id="frame-menu" src="menu.php" frameborder="0" height="30"></iframe></div> <div id="main"><iframe name="frame-main" id="frame-main" src="login.php" frameborder="0" width="878" height="700"></iframe></div> <div … Web Development php ![]() | |
hi I want to change the width of column in Gridview bound field but it is not changing . Code Is [code] <asp:BoundField DataField="Address" HeaderText="Address" SortExpression="Address"> <ItemStyle Width="500px" /> </asp:BoundField> [/code] thanx Web Development asp.net | |
Hi everyone, I am creating a invoice page, for that in the invoice table I have fields like(id, ionvoice_no, invoice_date,client_name,address,service_cost,tax,etc). While I enter invoice, I don not want to enter invoice, but it should change automatically from 1 previously it has to check whether already invoice number is or not. … Web Development php | |
Hi, all I have a web page that breaks down to several divs, two of them containing iframes (one for content, one for a menu): <HEAD> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <link rel="stylesheet" type="text/css" href="styles/default.css?ver=33"> </HEAD> <BODY> <div id="wrapper"> <div id="header">Welcome to my website</div> <div id="menu"><iframe name="frame-menu" id="frame-menu" src="menu.php" frameborder="0" height="30"></iframe></div> <div id="main"><iframe … Web Development javascript javascript-jquery |
The End.