392 Discussion / Question Topics

Remove Filter
Member Avatar for
Member Avatar for vinod tik

i have a problem in displaying the values of a cookie dynamically code goes as... <?php $x=array(); include("connect.php");//database connection file $temp=$_GET['id']; setcookie(count($x)+1,$temp); echo $_COOKIE['$x[1]']; ?> // how do i display the value of cookie every time... it is over written.... i have tried it with using array.. in short i …

Member Avatar for alan.davies
0
2K
Member Avatar for Aamit

hi, I am created 3 tables for 1> category 2> subcategory 3> projectdetail In my website folder structure root-index.php, header.php footer.php folder- about -index.php and other files folder - project- index.php folder - err- 404.php In my php page project/index.php i make left column dynamic, i.e call value from table …

Member Avatar for Sapna_3
-1
8K
Member Avatar for muralibobby2015

I have developed Laravel application which allows dynamic subdomains. I mean single code for all tenants.each tenant will have separate database. But how can I setup crons for each subdomain?

Member Avatar for cereal
0
428
Member Avatar for rpv_sen

Hi Friends, I have some dynamic text box in my screen, i have entered only one text field of the screen, after submitting the form all the values of the dynamic text box field is getting added in the database as 0 except the value i entered. i have used …

Member Avatar for Bhuvaneswari_1
0
2K
Member Avatar for rpv_sen

Hi I am trying to populate textbox value based on releated textbox value like that of (Country and State) using dynamic row formate. I can able to populate a value for only first row, if i tried ti for second row its again overwrite the first row and also i …

Member Avatar for Lucifer_1
0
3K
Member Avatar for nadiam

Hi. Im using vb 2010. I want to dynamically add textboxes to my form by clicking on a button. I've google searched and so far this code worked: Private Sub btn_addline_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_addline.Click Dim txtB1 As New TextBox Dim i For i = …

Member Avatar for Xavier_5
0
542
Member Avatar for amaz4u

i am able to populate data in chain select drop down list but the problem is when page is refreshing selected data is lost how to fix that .. here is the code.. <?php require_once 'include/config.php'; require_once 'include/opendb.php'; ?> <?php if(isset($_POST['model'])){ //This is for the third and final drop down …

Member Avatar for diafol
0
3K
Member Avatar for bigignoramus

I have been wrestling with this subject for six months and can find no complete answer anywhere on the web or in any book seen. I have become very familiar with the debate and so it is not necessary to debate the following here. I had rather do all of …

Member Avatar for gentlemedia
0
2K
Member Avatar for Stefce

I want to make dynamic search button i have this code but doesnt work it gives me this error `Could not connect to database. Fatal error: Wrong SQL: SELECT * FROM kladilnica WHERE Location = Macedonia AND Uplata = 50 AND Liked = 50 Error: Unknown column 'Macedonia' in 'where …

Member Avatar for hericles
0
269
Member Avatar for nagarjuna9

how to save that text boxes data into database ,by using this button evet,please tell me iam fresher. < protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) Session.Remove("clicks"); } protected void Button2_Click1(object sender, EventArgs e) { int rowcount = 0; rowcount = Convert.ToInt32(Session["clicks"]); rowcount++; Session["clicks"] = rowcount; for (int …

Member Avatar for nagarjuna9
0
394
Member Avatar for humble55

Hello Hello i have struct dynamic array (matrixCov) like this *array = (struct matrixCov*)malloc(sizeof(struct matrixCov) * counter); now i have another struct Link list with element Data type -struct matrixCov (struct matrixCov * data) now when i type this line for (k=0;k<conter;i++){ (*pointer)->data =array[k];} when k=0 copied well but from …

Member Avatar for AssertNull
0
725
Member Avatar for dawbin

I need to dynamically create two DIVs and an item to drag/drop between the two. If I code static HTML this works fine but dynamically I am missing something. Has someone been able to define drag events dynamically and have them work? <html> <head> <script> function main() { //SOURCE var …

Member Avatar for AleMonteiro
0
324
Member Avatar for saswati_mishra

Hi, I am writing a code to dynamically create a table and then add delete and modify records. The table is created from an existing database table. How ever the add and the deleting of records is not wrking. I think there is some error in the query statements. Please …

Member Avatar for gentlemedia
0
1K
Member Avatar for Tcll

Basically, I'm working with zipimport to load plugins. These plugins contain binary modules which can only be loaded via retrieving their data. Copying them to a temporary directory is stupid, so how can I get a handle to a dynamic process which I can inject the stream into before it's …

Member Avatar for Tcll
0
319
Member Avatar for prpasim1

The problem: I am want to create static websites for dynamic restaurants. A restaurant enters their details and from this, I want to create a web page for each restaurant with their own unique details on thi html page. So when I run them, in them will be their name, …

Member Avatar for prpasim1
0
553
Member Avatar for abdulkhader

Hi Team, Please guide me how can I Click on a link inside a cell of a HTML table ? In every row of the table, i have the same link with same properties. So based on row index, I want to click the link. Note : Using Telerik Test …

0
155
Member Avatar for FindNerd

As the iPhone7 will going to be launched in the coming months for all its personal and professional customers , So the Apple will Provide many new features in its upgraded version iphone7 which are embedded with advanced technology as compared to its earlier version iPhone6. You can check upgraded …

Member Avatar for ChrisRogers
0
304
Member Avatar for markii.borabon

Sir could you please tell me what are the things to consider when developing a dynamic or e-commerce type of website. I just want to understand more about websites. the risk and how do I prevent them. I know bit in sql injection,hackers and spammers but not that much.. please …

Member Avatar for bsabev
0
314
Member Avatar for James_43

Hi all, I've been trying to follow the basic Apple developer tutorial, where you create a food tracker app. I can not get one part of the code to work, and I can't see why. Not only is it exactly the same as in the example, but searches online also …

Member Avatar for James_43
0
802
Member Avatar for Suzie999

Please excuse my terminoligy, as I'm not certain of it in regards winforms components. I have a ContextMenuStrip on my form and in it there are some SubItems created manually. I need to add more to SubItem dynamically. I'm unsure if I'm saying this correctly so I'll post a screen …

Member Avatar for ddanbe
0
2K
Member Avatar for JVAII

Hello everybody, I'm doing a colleague a favor by looking into a VBA formula to make her reporting tasks a little easier, poor her, but I need help myself now. this is how her tabsheet is set up: ![CVDV__tab.jpg](/attachments/large/4/d71dd2333b4335e71abd83448f735d91.jpg "align-center") this is how the end result should look like in …

Member Avatar for ddanbe
0
382
Member Avatar for AntonyRayan

In a table, I show S.No , Name , Amount, Payable Amount, Balance Amount dynamically. So I need a calculation to show balance amount by subtracting payable amount with amount for all textboxes in onblur dynamically. Here is my code. But it does for only the first row, and how …

Member Avatar for jkon
0
289
Member Avatar for pradiplamsal

Hi guys from last month I am using one browser it called [Max Safe Browser](https://itunes.apple.com/hk/app/max-safe-browser/id774765714?mt=8) provided by Max Secure Software India Private Limited and I am feeling good by using this browser in my iphone and here I am just asking which browser is your best for iphone? If you …

Member Avatar for jeffmarkel
0
451
Member Avatar for mobilseo

Hello everyone Lifearea.net, Health and nutrition guides provide all the recipes, cupcakes recipes tips and expert advice you'll need for healthy living. Our website women's health, health nutrition and is recognized nationally as a go to source for trustworthy health information for women. This dynamic, comprehensive resource gives women the …

0
175
Member Avatar for shany0786

I want to what is better way of doing this.Suppose user visit a website he is not yet registered on our website so nav bar shows some options like sign up ,login, help these are options before registration now if user registrated for website after login options on nav bar …

Member Avatar for diafol
0
318
Member Avatar for mamataingle

My code is not working on selectedindexchanged on dynamic radiobuttonlist control public void data1() { Table tbldynamic = new Table(); for (int i = 0; i < 4; i++) { connection = new DAL_Layer(); dt = new DataTable(); dsCommonData = connection.returnDataSet("pro"); dt = dsCommonData.Tables[i]; TableCell tc1 = new TableCell(); TableRow …

0
181
Member Avatar for malatamil

i have a URL like this example.com/index.php?param1=10,20,30,40,50¶m2=50,60,70,80,90,10¶m3=40,50,60,70,80 Using PHP,javascript,JSON i did this pentagon radarchart. If the values are changing then the pentegon image also will be change. and if the parameters limit is 3 only. if it is 1 parameter then the respective parameter values will display. By using the …

Member Avatar for malatamil
0
619
Member Avatar for AntonyRayan

Hi, In a page, By selecting values I display a table using javascript ajax. The table looks like this: S.no name S1 S2 S3 S4 S5 Total 1 A 80 90 78 76 100 424 2 B 50 50 50 50 100 350 ;; . . . it goes like …

Member Avatar for diafol
0
245
Member Avatar for Evil_genius82

Dear all, I have a very strange problem I cant seem to make sense of. Here is the story... I created a product page which when visited performs an ajax request to a json file to obtain product data, I then have a js script while dynamically appends html to …

Member Avatar for diafol
0
265
Member Avatar for ddanbe

I'm referring to my snippet [Inheriting the stack class](https://www.daniweb.com/software-development/csharp/code/498828/inheriting-the-stack-class) After looong loong searches and many tries and tests, I finally came up with a version that works as I wanted to. Stacker can now handle any type of object, even with arethmetic methods in place. The virtual way as proposed …

Member Avatar for JOSheaIV
0
276

The End.